Search found 9411 matches

by Sergey Tkachenko
Sat Sep 30, 2006 6:57 pm
Forum: Support
Topic: Save control properties to rfv file
Replies: 1
Views: 8416

TRichView uses Delphi VCL streaming mechanism to store controls in RVF files. Published properties are stored. If some properties (links to other components?) are not stored, you can create inherited controls with new published properties, and may be use OnControlAction event to reassign some proper...
by Sergey Tkachenko
Sat Sep 30, 2006 6:52 pm
Forum: Support
Topic: Documents with tables - very low preview quality
Replies: 2
Views: 10349

1 pixel rounding off errors are unavoidable, sorry.
If there are larger errors, please send me RVF documents reproducing them.
by Sergey Tkachenko
Sat Sep 30, 2006 6:48 pm
Forum: Support
Topic: text modules with numbered lists
Replies: 2
Views: 10546

Please send me a simple project reproducing this problem
by Sergey Tkachenko
Thu Sep 28, 2006 1:02 pm
Forum: Support
Topic: RTF Code Optimization
Replies: 15
Views: 38329

Do you mean application exe file size, or size of saved RTF file?
by Sergey Tkachenko
Wed Sep 27, 2006 6:44 pm
Forum: Support
Topic: HTML Importer and DBRichViewEdit
Replies: 2
Views: 9767

if DBRichViewEdit1.CanChange then begin <load HTML here> DBRichViewEdit1.Change; DBRichViewEdit1.Format; end; CanChange calls table.Edit. If you want to save changes in the table immediately, call table.Post instead of DBRichViewEdit1.Format. The same sequence of actions is required if you modify D...
by Sergey Tkachenko
Tue Sep 26, 2006 7:30 am
Forum: Support
Topic: What time with the new version trichviewedit
Replies: 3
Views: 14020

I opened access to the private section of this forum for you.
The latest stable version is 1.9.24.
The latest beta (or may be it should be callled alpha) version is 1.9.26
by Sergey Tkachenko
Mon Sep 25, 2006 2:33 pm
Forum: Support
Topic: Printing isn't correct on every printers
Replies: 61
Views: 156896

It seems that the problem can be solved by implementing alternative method of formatting, using the printer resolution.
I'll try to do it this week.
by Sergey Tkachenko
Mon Sep 25, 2006 2:30 pm
Forum: Support
Topic: Please do IMG ALIGN next
Replies: 14
Views: 35889

It has quite a high priority in my to-do list
by Sergey Tkachenko
Mon Sep 25, 2006 2:29 pm
Forum: Support
Topic: RichViewEdit vs RichView
Replies: 5
Views: 14428

May be, but sorry, I cannot promise it
by Sergey Tkachenko
Mon Sep 25, 2006 2:17 pm
Forum: Support
Topic: how to use richviewedit on page mode?
Replies: 1
Views: 9384

Not supported yet.
I know, one person is creating a page view editor based on TRichView. But when/if it will be released, it will be an additional (not free) product.
Page view in TRichViewEdit itself is planned, but not for near future.
by Sergey Tkachenko
Sun Sep 24, 2006 8:26 pm
Forum: Support
Topic: RichViewEdit vs RichView
Replies: 5
Views: 14428

No, TRichView does not support floating images
by Sergey Tkachenko
Sun Sep 24, 2006 6:26 am
Forum: Support
Topic: how to support double strike?
Replies: 1
Views: 9592

Only by drawing it yourself in OnDrawStyleText event
by Sergey Tkachenko
Sat Sep 23, 2006 2:43 pm
Forum: Support
Topic: RichViewEdit and Streams
Replies: 3
Views: 12843

LoadRTF and LoadRTFFromStream do not clear the existing document, they append RTF data to the end of it. Each TRichViewEdit initially has one empty text line. Solution: call RichViewEdit.Clear before loading RTF. Do not call RichViewEdit.Format between Clear and loading, because Format adds this lin...
by Sergey Tkachenko
Sat Sep 23, 2006 2:39 pm
Forum: Support
Topic: RichViewEdit vs RichView
Replies: 5
Views: 14428

1. TRichView cannot be edited. To disallow editing TRichViewEdit, set RichViewEdit.ReadOnly = True. To prevent copying from TRichView or TRichViewEdit, exclude all rvoAutoCopy* options from the Options property. If you want to prevent drag&drop too, include rvoDisallowDrag in the same Options pr...
by Sergey Tkachenko
Fri Sep 22, 2006 1:24 pm
Forum: Support
Topic: Printing isn't correct on every printers
Replies: 61
Views: 156896

Sorry for delay, I asked Digital Metaphors for help, I hope we will find a solution.