Search found 206 matches

by proxy3d
Fri Aug 26, 2011 3:34 pm
Forum: Support
Topic: Handling OnMoved event for splitter to resize TSRVPageScroll
Replies: 2
Views: 13878

Fixed:

Code: Select all

procedure TSRVPageScroll.SetPageWidth(Value : Integer);
begin
  if FPageWidth <> Value then
    begin
      FPageWidth := Value;
      UpdateCache;   // <<<<<<<<<<<< ADDING
      Invalidate;
    end;
end;
by proxy3d
Wed Aug 17, 2011 3:43 pm
Forum: Support
Topic: Printing to A5 (SRichviewEdit)
Replies: 2
Views: 12433

we will check it.
by proxy3d
Tue May 17, 2011 9:54 pm
Forum: Support
Topic: Item too long to fit in 1 page in SRV
Replies: 4
Views: 18156

2 months
by proxy3d
Fri May 13, 2011 7:00 pm
Forum: Support
Topic: Item too long to fit in 1 page in SRV
Replies: 4
Views: 18156

Re: Item too long to fit in 1 page in SRV

Sorry, SRV can not cut controls. In the future, I'll create a control that will cut into the pages or create this property in SRVControls.
by proxy3d
Tue Oct 12, 2010 8:10 am
Forum: ScaleRichView
Topic: Adding A TSRVComboBox
Replies: 2
Views: 19369

I recommend using BeginUpdate and EndUpdate, if the elements greater than 3.

Code: Select all

  c.BeginUpdate;
  ci := c.Items.Add;
  ....
  c.EndUpdate;
by proxy3d
Tue Oct 12, 2010 8:07 am
Forum: ScaleRichView
Topic: Adding A TSRVComboBox
Replies: 2
Views: 19369

Caption - the text element in the list for SRVCombobox DisplayName - the text in the Object Inspector at design mode. procedure TFInsertControls.ToolButton16Click(Sender: TObject); var c : TSRVComboBox; ci: TCollectionItem; begin c := TSRVComboBox.Create(nil); c.Parent := SRichViewEdit1.RichViewEdit...
by proxy3d
Tue Oct 12, 2010 7:42 am
Forum: Support
Topic: Substitute RichViewEdit in TSRichViewEdit
Replies: 7
Views: 23355

need to apply the properties of SRV to RV, using RefreshData

Code: Select all

procedure TForm1.FormCreate(Sender: TObject); 
...
  SRVE.ExternalRV := ExRVE; 
  SRVE.RefreshData;
end; 
by proxy3d
Fri Sep 17, 2010 9:42 pm
Forum: Support
Topic: Drawing in TSRichViewEdit
Replies: 10
Views: 32067

Yes, your code is correct
by proxy3d
Fri Sep 17, 2010 9:48 am
Forum: Support
Topic: Drawing in TSRichViewEdit
Replies: 10
Views: 32067

use the ConvertRVtoSRV (p: TPoint): TPoint; converts the coordinates of the RV in the coordinates of the SRV. or function (see their description in help): procedure GetItemCoords100 (RVData: TCustomRVFormattedData; ItemNo: Integer; var ALeft, ATop: Integer; var PageNo: Integer); procedure GetItemBou...
by proxy3d
Thu Sep 16, 2010 9:04 am
Forum: Support
Topic: edit canot display the caret
Replies: 8
Views: 26654

Look examples with srvcontrols.
by proxy3d
Thu Sep 16, 2010 12:30 am
Forum: Support
Topic: edit canot display the caret
Replies: 8
Views: 26654

Sorry, no. SRVEdit was created to solve this problem. In SRV does not work Edit, to use SRVEdit. Media Player - SRVMediaPlayer. Combobox - SRVCombobox, Listbox - SRVListbox, Button - SVRButton etc. If you want to make the components in the style devexpress, then you need to use SRVSkinManager. With ...
by proxy3d
Mon Sep 06, 2010 10:33 am
Forum: Support
Topic: Table defect
Replies: 1
Views: 10507

We will update trial versions and exe-demos soon. This bug has been fixed.
by proxy3d
Tue Jul 27, 2010 1:14 am
Forum: ScaleRichView
Topic: Truncated Documents
Replies: 4
Views: 26044

send me a simple example and the document on which I can reproduce it.
by proxy3d
Sun Jul 25, 2010 12:44 am
Forum: ScaleRichView
Topic: Print Preview Margins
Replies: 8
Views: 36377

What mode PrintMode you use?
In mode srvpAuto, SRVPrint resets PrintMode in srvfmCustom and finds the printer format similar to the format of the document in the SRV.
All modes SRVPrint (exclusion mode srvpPoster) can choose the paper size the printer itself, it is described in help.
by proxy3d
Wed Jul 14, 2010 3:45 am
Forum: ScaleRichView
Topic: Footnotes
Replies: 16
Views: 64893

Fixed