Search found 9410 matches

by Sergey Tkachenko
Thu Jun 01, 2006 12:57 pm
Forum: Support
Topic: Can I update RichView which compatible with BDS 2006 ?How?
Replies: 3
Views: 13995

You'll receive the latest version of TRichView, supporting D2006.
And future updates will be free.
by Sergey Tkachenko
Tue May 30, 2006 1:09 pm
Forum: Support
Topic: how to deal with chinese!
Replies: 3
Views: 14086

Sorry, we cannot say exactly why it happens. The Skype developers may use customized version of TRichView with their own implementation of WM_GETTEXT. (History: Processing of this message was implemented in TRichView 1.9.6. Starting from v1.9.10.2, processing of this message was disabled for Delphi ...
by Sergey Tkachenko
Tue May 30, 2006 1:00 pm
Forum: Support
Topic: Formatting metafiles in TRichView
Replies: 2
Views: 10876

See this topic for the procedure returning width and height of printing area: http://www.trichview.com/forums/viewtopic.php?t=559
by Sergey Tkachenko
Tue May 30, 2006 12:55 pm
Forum: Support
Topic: Strange rendering of parenthesis in right-to-left mode
Replies: 1
Views: 8717

Added in to-do list
by Sergey Tkachenko
Tue May 30, 2006 12:53 pm
Forum: Support
Topic: Getting control of margins in cells
Replies: 2
Views: 10464

Please send me an example as RVF file
by Sergey Tkachenko
Wed May 24, 2006 7:06 pm
Forum: Support
Topic: How to print individual lines and how to show/configure page
Replies: 14
Views: 38578

Planned, but not for near future
by Sergey Tkachenko
Wed May 24, 2006 7:03 pm
Forum: Support
Topic: Some questions about RichView
Replies: 2
Views: 12536

Text loading methods recognize Form Feeds, but do not recognize Escape sequences. There are no methods/properties allowing to set max N of lines on page. And WYSIWYG is not implemented, so lines may break in different places on paper and in editor. You can convert each page to image using TRVReportH...
by Sergey Tkachenko
Tue May 23, 2006 12:06 pm
Forum: Support
Topic: TAB to the next editable cell
Replies: 4
Views: 16183

Use OnKeyPress event. There is a limitation, if the key is pressed when the caret is inside the table cell - you cannot move the caret out of this cell in this event (this will destroy the cell inplace editor, but it's not allowed in this event). Use PostMessage to avoid this problem. (examples of u...
by Sergey Tkachenko
Tue May 23, 2006 11:59 am
Forum: Support
Topic: Does trichview support creation of forms?
Replies: 9
Views: 32232

Use OnKeyPress
by Sergey Tkachenko
Mon May 22, 2006 7:24 pm
Forum: Support
Topic: How to print individual lines and how to show/configure page
Replies: 14
Views: 38578

Soft page breaks are displayed when the document is ready for printing (RVPrint.FormatPages is called), after you call RichViewEdit.AssignSoftPageBreaks(RVPrint). Sorry, TRichView cannot add pagebreaks after the specified number of lines. You can add pagebreaks yourself, but a number of lines on pri...
by Sergey Tkachenko
Mon May 22, 2006 7:13 pm
Forum: Support
Topic: MDI-form with RichViewAction
Replies: 1
Views: 8527

Place TRVAControlPanel component on the main form (use only one instance of this component) and assign proper RichViewEdit to RVAControlPanel.DefaultControl each time when new form becomes active.
by Sergey Tkachenko
Mon May 22, 2006 7:10 pm
Forum: Support
Topic: Detect unicode text in clipboard
Replies: 5
Views: 17565

1) Make the editor Unicode completely: http://www.trichview.com/forums/viewtopic.php?t=70

or

2) User must switch the keyboard to Russian layout when copying Russian text
by Sergey Tkachenko
Mon May 22, 2006 7:08 pm
Forum: Support
Topic: Is there a unicode version of RVActions ?
Replies: 1
Views: 8593

Sorry, there is no Unicode version of RichViewActions.
by Sergey Tkachenko
Mon May 22, 2006 7:07 pm
Forum: Support
Topic: Does trichview support creation of forms?
Replies: 9
Views: 32232

You can use TRichView component (it's read-only). If you insert TEdits in it, user can navigate between them using Tab key.

It's possible to make some part of text read-only in TRichViewEdit. But user still will be able to place caret inside read-only text.