Search found 100 matches

by vit
Thu Apr 30, 2009 1:21 pm
Forum: Support
Topic: copy some items from RVE to another RVE
Replies: 4
Views: 13758

Thank you!
by vit
Thu Apr 30, 2009 7:51 am
Forum: Support
Topic: copy some items from RVE to another RVE
Replies: 4
Views: 13758

Well, its realy more simple. But is not very quickly with large documents (~100 pages).

Is there way to save in stream only concrete items (without selection its), not all?

Thank you for suggestion!
by vit
Wed Apr 29, 2009 9:10 am
Forum: Support
Topic: copy some items from RVE to another RVE
Replies: 4
Views: 13758

copy some items from RVE to another RVE

Hi! I'm needed to copy some (not all!) items from rveSrc to rveTar. Is there simple way to make it? I have write this method: procedure AssignRVData(Src, Tar: TCustomRVData); var i: Integer; s: TCustomRVItemInfo; t: TCustomRVItemInfo; nc: TCustomRVItemInfoClass; r: Integer; c: Integer; stii: TRVTabl...
by vit
Thu Apr 09, 2009 11:45 am
Forum: Support
Topic: Draw text as selected throw TRVReportHelper
Replies: 1
Views: 8829

Draw text as selected throw TRVReportHelper

Hi!
I using TRVReportHelper for drawing RTF text on Canvas. I want to represent selection a part of text by highlight. So how I can do it?
May be I can get somehow rectangles of all selected lines with offsets?

Thank you for any help!
by vit
Fri Mar 20, 2009 4:16 pm
Forum: Support
Topic: Table in cell
Replies: 2
Views: 10516

Thank you!
by vit
Fri Mar 20, 2009 3:37 pm
Forum: Support
Topic: Table in cell
Replies: 2
Views: 10516

Table in cell

Hi!
There is a table (t1) wich placed in one of cells of another table (t2). A focus is in cell of t1. So how I can delete current col/row of t1?
Thanks!
by vit
Fri Feb 06, 2009 4:14 pm
Forum: Support
Topic: DocumentHeight
Replies: 8
Views: 26608

It's work!
Thanks a lot!
by vit
Fri Feb 06, 2009 10:18 am
Forum: Support
Topic: DocumentHeight
Replies: 8
Views: 26608

Is needed to while user input text, height of rve be enouth to display it without scrollbar. So, I try this: procedure TForm1.rveResize(Sender: TObject); var c: Integer; begin rve.OnResize := nil; try c := Trunc(rve.DocumentHeight / rve.VSmallStep); if (rve.DocumentHeight mod rve.VSmallStep) > 0 the...
by vit
Wed Feb 04, 2009 9:29 am
Forum: Support
Topic: DocumentHeight
Replies: 8
Views: 26608

It seems that OnResize event fire before than DocumentHeight update..
by vit
Wed Feb 04, 2009 8:58 am
Forum: Support
Topic: DocumentHeight
Replies: 8
Views: 26608

DocumentHeight

Hi! I try to set height of RichEditView to DocuemntHeight value in OnResize event: procedure TForm1.rveResize(Sender: TObject); begin rve.Height := rve.DocumentHeight; end; But when user input line and press enter vertical scrollbar make active! And user can scroll it down on one line. What I need t...