Search found 206 matches

by proxy3d
Sat May 15, 2010 5:23 am
Forum: ScaleRichView
Topic: Format not woking
Replies: 19
Views: 69997

Bug fixed in the SRV 3.2
by proxy3d
Sat May 15, 2010 5:16 am
Forum: Support
Topic: changing zoom with Ctrl + Mouse wheel
Replies: 8
Views: 31989

Added the new version of SRV 3.2
by proxy3d
Sat May 15, 2010 5:15 am
Forum: Support
Topic: ScaleRichView caret visibility problem BCB2007 Win7
Replies: 20
Views: 48455

Check the new version of the SRV 3.2
by proxy3d
Wed Apr 14, 2010 3:45 pm
Forum: ScaleRichView
Topic: Footnotes
Replies: 16
Views: 65207

Yes. But I need some more time to finish the job.
by proxy3d
Mon Mar 29, 2010 3:29 pm
Forum: ScaleRichView
Topic: Footnotes
Replies: 16
Views: 65207

This week will be updated for Skin SRVControls.
At the end of next week I plan to update footnotes.
by proxy3d
Sun Dec 20, 2009 7:15 pm
Forum: ScaleRichView
Topic: Footnotes
Replies: 16
Views: 65207

Now I do footnotes.
by proxy3d
Sun Dec 06, 2009 11:41 pm
Forum: ScaleRichView
Topic: Print Preview Margins
Replies: 8
Views: 36696

I think that margins for your printer very small or are equal 0. What value return in PrnRect? Unit : SRVPreview.pas Procedure: procedure TSRVPreview. DrawContents (Canvas:TCanvas; const R: TRect); Line: with SRVPrint. SRVPrtInfo do PrnRect: = Bounds (Round (MarginPixelsX * ScaleX), Round (MarginPix...
by proxy3d
Fri Dec 04, 2009 12:39 pm
Forum: ScaleRichView
Topic: GetItemBounds
Replies: 1
Views: 15711

Yes, other functions for calculation are not present.
But function counts area Item for screen.
by proxy3d
Sat Nov 28, 2009 11:07 pm
Forum: ScaleRichView
Topic: SRVE to PDF
Replies: 5
Views: 25433

Send me a PrintScreen or pdf a file.
by proxy3d
Tue Nov 24, 2009 9:36 am
Forum: ScaleRichView
Topic: How to hide page numbers
Replies: 1
Views: 14231

See: PageProperty.PageNoVisible
SRV.PageProperty.PageNoVisible = False - hide
by proxy3d
Wed Nov 11, 2009 11:12 pm
Forum: ScaleRichView
Topic: Label overlaps text
Replies: 11
Views: 45011

Corrected RVLabel and SRVLabel will be uploaded in next update.
by proxy3d
Wed Nov 11, 2009 10:39 pm
Forum: ScaleRichView
Topic: SRVLabel Implementation
Replies: 3
Views: 20168

See also: Demos\Controls\SRVControls\ Example: procedure TForm.FormCreate(Sender: TObject); begin SRV.LoadRVF('SRVControls.rvf'); SRV.ProcessControls; end; procedure TForm.SRVCheckControl(Sender: TSRichViewEdit; AControl: TControl); begin If AControl is TSRVLabel then TSRVLabel(AControl).OnClick := ...
by proxy3d
Mon Nov 09, 2009 10:24 pm
Forum: ScaleRichView
Topic: Label overlaps text
Replies: 11
Views: 45011

See example: Demos\Controls\InsertControls\ Code for insert in SRV: procedure TFInsertControls.ToolButton5Click(Sender: TObject); var c : TSRVLabel; begin c := TSRVLabel.Create(nil); c.Parent := SRichViewEdit1.RichViewEdit; c.Name := 'SRVLabel'; c.Caption := 'SRVLabel'; c.AutoResize := FALSE; // <<<...
by proxy3d
Mon Nov 09, 2009 9:27 pm
Forum: ScaleRichView
Topic: Label overlaps text
Replies: 11
Views: 45011

Code: Select all

SRVLabel. AutoSize: = False.
For SRVLabel there is property AutoSize. By default it is TRUE.

PS: do not use in SRVLabel raster fonts. Raster fonts have problems with scaling in Windows. To use vector fonts.
by proxy3d
Mon Nov 09, 2009 6:38 am
Forum: Support
Topic: table content is longer than one page
Replies: 2
Views: 10992

Sorry, now scalerichview does not support page breaks inside cells. I plan to implement it in the future, after support of footnotes.

Now, if the cell cannot be placed on the page, SRV moves it to a new page.