Search found 10 matches
- Thu Nov 03, 2005 1:20 am
- Forum: Support
- Topic: Meaning of image size (rvepImageWidth, rvepImageHeight)?
- Replies: 3
- Views: 18173
- Wed Nov 02, 2005 12:04 pm
- Forum: Support
- Topic: Meaning of image size (rvepImageWidth, rvepImageHeight)?
- Replies: 3
- Views: 18173
Meaning of image size (rvepImageWidth, rvepImageHeight)?
Hello, After inserting pictures with TRichViewEdit.InsertPicture() I wish to set the picture's size to a predifined size. For this I call: TRichViewEdit.SetItemExtraIntProperty(ItemNo, rvepImageWidth, SIZE) and TRichViewEdit.SetItemExtraIntProperty(ItemNo, rvepImageHeight, SIZE) But what is the ...
- Wed Oct 26, 2005 11:59 am
- Forum: Support
- Topic: Scale RTF to fit to one page
- Replies: 8
- Views: 33730
I think following is to do: 1) Determin the screen device size (for preview) and printer device size (selected printer and paper size for printing) 2) Determin the "virtual" page height, the page should have to render the whole RichView content into only ONE page 3) Scale the large page proportional ...
- Wed Oct 26, 2005 8:45 am
- Forum: Support
- Topic: Problem with TRVReportHelper and RTF-Files containing tables
- Replies: 2
- Views: 15806
- Tue Oct 25, 2005 6:16 pm
- Forum: Support
- Topic: Problem with TRVReportHelper and RTF-Files containing tables
- Replies: 2
- Views: 15806
Problem with TRVReportHelper and RTF-Files containing tables
I used to open RTF files via TRichViewEdit like this RichViewEdit.LoadRTF('C:\Test.rtf'); RichViewEdit.Format; Everything works fine. Now trying to do the same with the TRVReportHelper like this RVReportHelper.RichView.LoadRTF('C:\Test.rtf'); RVReportHelper.RichView.Format; I get an access violation ...
- Tue Oct 25, 2005 1:11 pm
- Forum: Support
- Topic: Scale RTF to fit to one page
- Replies: 8
- Views: 33730
- Tue Oct 25, 2005 10:17 am
- Forum: Support
- Topic: Scale RTF to fit to one page
- Replies: 8
- Views: 33730
Scale RTF to fit to one page
Hello,
here I come with another question/problem:
I get any RTF file (which I can load via RichView or RichViewHelper). How can I scale this to fit to one page for my print out (via RVPrinter)?
Thank you for any hints.
here I come with another question/problem:
I get any RTF file (which I can load via RichView or RichViewHelper). How can I scale this to fit to one page for my print out (via RVPrinter)?
Thank you for any hints.
- Fri Oct 14, 2005 9:45 am
- Forum: Support
- Topic: How to determin, if selected text is inside a table cell?
- Replies: 5
- Views: 25602
- Wed Oct 12, 2005 4:20 pm
- Forum: Support
- Topic: How to determin, if selected text is inside a table cell?
- Replies: 5
- Views: 25602
Thank you, this hint helped me a lot! :D Now, trying to replace the copied cell text with another string, I get some problems. The cell text is selected but inserting a new text, does not overwrite the selected cell text but inserts the new text to the top if the document. Have a look to my code ...
- Wed Oct 12, 2005 2:26 pm
- Forum: Support
- Topic: How to determin, if selected text is inside a table cell?
- Replies: 5
- Views: 25602
How to determin, if selected text is inside a table cell?
Hello, let me explain, what I'm going to do: My RVEdit will load any RichText files with or w/o tables. Each document contains macro names like "{$name}", which will be replaced by the program with certain strings. So far so good. Now, it's necessary to determin, if a specific macro name is inside a ...