Search found 9445 matches

by Sergey Tkachenko
Fri Sep 16, 2005 9:22 am
Forum: Support
Topic: XHtml to stream export
Replies: 13
Views: 50357

Sorry, it's not possible.
If this event is not fired, all hyperlink would be written as a plain text (hyperlink target is provided by this event, or by obsolete OnURLNeeded)
by Sergey Tkachenko
Thu Sep 15, 2005 5:03 pm
Forum: Support
Topic: How to export OLE objects from TRichViewEdit to a .rtf file.
Replies: 10
Views: 52205

Thank you, David.
I added a link to this topic in the Examples&Demos forum
by Sergey Tkachenko
Thu Sep 15, 2005 4:59 pm
Forum: Examples, Demos
Topic: [How to] How to save OLE objects in RTF
Replies: 3
Views: 56201

[How to] How to save OLE objects in RTF

Saving TOLEContainers from TRichView to RTF file:
http://www.trichview.com/forums/viewtopic.php?t=108
by Sergey Tkachenko
Thu Sep 15, 2005 4:56 pm
Forum: Support
Topic: XHtml to stream export
Replies: 13
Views: 50357

TRichView does not save hyperlinks in HTML itself. It's done in OnWriteHyperlink event. Modify code in this event to add protocol prefixes when necessary
by Sergey Tkachenko
Thu Sep 15, 2005 4:52 pm
Forum: Support
Topic: Summary
Replies: 1
Views: 14126

At the end of each page? There is no an elegant solution for this. Possible solution: 1) Format document for printing (RVPrint.FormatPages) 2) Save each page in new document (RVPrint.SavePageAsRVF - undocumented method). It may be done page by page, not necessary the same pages at once. 3) Prepare f...
by Sergey Tkachenko
Thu Sep 15, 2005 4:39 pm
Forum: Support
Topic: Questio about adjusting text
Replies: 1
Views: 13747

WYSIWYG editing is not supported yet. Text in editor wraps not at the same places as in printing.
There is a solution (assigning rv.MinTextWidth = rv.MaxTextWidth = paper width), but it is only approximate. Wrapping exactly at the same places is not guaranteed.
by Sergey Tkachenko
Thu Sep 15, 2005 12:31 pm
Forum: Support
Topic: ERichViewError
Replies: 4
Views: 21862

Probably your application has additional code causing this error. I cannot reproduce it in RichView demos.

This exception occurs if, for example, GetPictureInfo is called for non-picture item, such as text.
by Sergey Tkachenko
Tue Sep 13, 2005 8:44 pm
Forum: Support
Topic: XHtml to stream export
Replies: 13
Views: 50357

rv.SaveHTMLToStreamEx
by Sergey Tkachenko
Tue Sep 13, 2005 4:52 pm
Forum: Support
Topic: FastReport wapper
Replies: 37
Views: 164965

That was only plans, about August.
It will be implemented as soon as it will be possible, but some other features come first
by Sergey Tkachenko
Tue Sep 13, 2005 4:47 pm
Forum: Support
Topic: "cannot open clipboard" error
Replies: 1
Views: 15171

It may be because an application opened the Clipboard and did not close it. Do your application work with the Clipboard?
by Sergey Tkachenko
Tue Sep 13, 2005 4:46 pm
Forum: Support
Topic: New support forums. Please read.
Replies: 23
Views: 119884

Martin, RSS is already available, see http://www.trichview.com/forums/viewtopic.php?t=49
by Sergey Tkachenko
Tue Sep 13, 2005 4:44 pm
Forum: Support
Topic: How create parstyle with gradient background?
Replies: 1
Views: 15115

The only way - drawing it yourself (TRVStyle.OnDrawParaBack)
by Sergey Tkachenko
Tue Sep 13, 2005 4:43 pm
Forum: Support
Topic: Is possible to add text....
Replies: 1
Views: 13696

1) table with 2 rows
2) right-aligned tab
by Sergey Tkachenko
Mon Sep 12, 2005 6:25 pm
Forum: Support
Topic: How to prevent the "List index out of bounds" erro
Replies: 10
Views: 43733

This error appears when the program tries to get or set a list/collection item, and it uses an incorrect list index (negative or >= list.Count). Any Delphi application uses a lot of lists and collections, so this error may happen everywhere. If you can tell me how to reproduce this problem using exi...
by Sergey Tkachenko
Mon Sep 12, 2005 5:39 pm
Forum: Support
Topic: Floating text around image
Replies: 6
Views: 22913

It is in my to-do list, but I cannot tell when it will be implemented