Search found 9411 matches

by Sergey Tkachenko
Thu Jul 03, 2008 11:32 am
Forum: ScaleRichView
Topic: Create ScaleRichView in runtime
Replies: 5
Views: 23512

The fixed version is uploaded (available for registered users of TRichView).
by Sergey Tkachenko
Thu Jul 03, 2008 11:28 am
Forum: ScaleRichView
Topic: Page size settings vs. printed page settings
Replies: 2
Views: 16999

In the new update, SRichViewEdit automatically prints like that (if the printer does not support the document page size, the document is scaled down proportionally to fit the paper size). Besides, several printing modes are added to SRVPrint component, so now you can customize how to print document ...
by Sergey Tkachenko
Thu Jul 03, 2008 11:25 am
Forum: ScaleRichView
Topic: ScaleRichView - shareware TRichView addon for WYSIWYG edit
Replies: 19
Views: 99826

Update 2008-Jul-3: ScaleRichView v1.5.1 Requires: TRichView v10.3 RichViewActions v1.64 The main feature of this update: better printing. New properties for SRVPrint allow different printing modes (auto, stretch-to-fit, stretch-if-larger, tiles, posters). In this version, you can not only print pos...
by Sergey Tkachenko
Thu Jul 03, 2008 7:24 am
Forum: Support
Topic: rvrb102006.bpl not compatible with RB10.10.5
Replies: 3
Views: 10488

You try to install the package for Delphi 2006 to Delphi (or C++Builder) 2007. It does not work, because it refers to packages for Delphi 2006. Unfortunately, I do not have RVRB packages for RAD Studio 2007. But you can create them yourself by following the instructions. 1. Install TRichView and Rep...
by Sergey Tkachenko
Thu Jul 03, 2008 7:06 am
Forum: Support
Topic: AppendRVFFromStream - No Bullets ?
Replies: 9
Views: 41282

As for the second question, it is OffsetInCurItem property (or better, to support tables, RichViewEdit1->TopLevelEditor->OffsetInCurItem)
The example of replacing text to emoticons on typing can be found in Demos\CBuilder\Assorted\Graphics\Emoticons
by Sergey Tkachenko
Thu Jul 03, 2008 7:02 am
Forum: Support
Topic: AppendRVFFromStream - No Bullets ?
Replies: 9
Views: 41282

When loading "bullets" or "hotspot" item from RVF, OnRVFImageListNeeded event occurs, where you need to specify the image list for this item. For example, void __fastcall TForm1::RichViewEdit1RVFImageListNeeded(TCustomRichView *Sender, int ImageListTag, TCustomImageList *&il)...
by Sergey Tkachenko
Thu Jul 03, 2008 6:59 am
Forum: Support
Topic: Missing RichView components for Addict3.5
Replies: 10
Views: 21437

This unit is included in RichViewActions. It converts the RichViewActions language identifier to Addict's language identifiers. This unit makes no sense without RichViewActions.
by Sergey Tkachenko
Tue Jul 01, 2008 6:31 pm
Forum: Support
Topic: copy a col (with content) right to a merged col
Replies: 5
Views: 13622

I found bugs in this code, see e-mail. The main reason is copying to the wrong column.
by Sergey Tkachenko
Tue Jul 01, 2008 5:07 pm
Forum: ScaleRichView
Topic: Create ScaleRichView in runtime
Replies: 5
Views: 23512

Will be fixed in the next update.
by Sergey Tkachenko
Tue Jul 01, 2008 3:58 pm
Forum: ScaleRichView
Topic: string underlined like in spelling
Replies: 18
Views: 58931

This functionality is not supported. You can try to implement it, but with not guarantees. I know some users tried to use it, even created their new word painters, using different drawing method (not wavy underlines). Generally, it should work like this: function GetWordPaintList(RVData: TCustomRVFo...
by Sergey Tkachenko
Mon Jun 30, 2008 6:25 pm
Forum: Support
Topic: How to focus on the speciefied inserted item
Replies: 2
Views: 17106

The simplest way is to call edit->SetFocus() after this code. (If you know item index, check if this item really contains a control (RichView1->GetItemStyle(ItemNo)==rvsComponent, then get this control (RichView->GetControlInfo), and call SetFocus for the retrieved control. But if you already has it...
by Sergey Tkachenko
Mon Jun 30, 2008 6:05 pm
Forum: Support
Topic: Clicking multiple times on an object gives exception
Replies: 5
Views: 24741

Please upgrade to the latest version (for registered users it is 10.2).
If it will not help, send the compiled project to me (rename exe extension to jpg to pass through antivirus)
by Sergey Tkachenko
Mon Jun 30, 2008 7:04 am
Forum: Support
Topic: Clicking multiple times on an object gives exception
Replies: 5
Views: 24741

Hmm, does it happen only in your application, or in any demo project created with TRichView? What version of TRichView do you use? What line exactly in TCustomRVFormattedData.DoDrag generates the exception? (probably your project was not compiled with stack frames on, so this function is not shown i...
by Sergey Tkachenko
Sun Jun 29, 2008 5:58 pm
Forum: Support
Topic: copy a col (with content) right to a merged col
Replies: 5
Views: 13622

I received your project and I'll answer tomorrow.
by Sergey Tkachenko
Sun Jun 29, 2008 5:57 pm
Forum: Support
Topic: Clicking multiple times on an object gives exception
Replies: 5
Views: 24741

Are you sure you do not have any code in events (OnClick, OnRVMouseUp/Down, OnSelect, etc.) that causes this exception? To find where this exception occurs, I need to view a call stack at the moment of the exception. Compile your project with: - optimization off - stack frames on - all debug info on...