Search found 9445 matches

by Sergey Tkachenko
Thu Jul 03, 2008 5:25 pm
Forum: Support
Topic: AppendRVFFromStream - No Bullets ?
Replies: 9
Views: 42876

TMemoryStream *stream = new TMemoryStream(); RichViewEdit1->SaveRVFToStream(stream,false); stream->Seek(0,0); int ItemCount = tabel->Cells[0][1]->ItemCount; tabel->Cells[0][1]->AppendRVFFromStream(stream,-1,Dummy1,Dummy2); for (int i =ItemCount; i<tabel->Cells[0][1]->ItemCount; i++) if (tabel->Cell...
by Sergey Tkachenko
Thu Jul 03, 2008 4:56 pm
Forum: Support
Topic: Missing RichView components for Addict3.5
Replies: 10
Views: 21645

It's not necessary to add this file in the package (nothing wrong in adding, though).
If you include it in "uses" of you unit, it will be linked to the project, even if it is not included in any package.
by Sergey Tkachenko
Thu Jul 03, 2008 2:07 pm
Forum: Support
Topic: AppendRVFFromStream - No Bullets ?
Replies: 9
Views: 42876

Unfortunately, VAlign of "bullets" and "hotspots" is not saved in RVF.
It will be fixed in the next update (but not sooner than after 2 weeks).
by Sergey Tkachenko
Thu Jul 03, 2008 12:23 pm
Forum: Support
Topic: RvHtmlImporter v0.0027 bugs
Replies: 27
Views: 61315

Yes, I think this is the problem in the importer.
It will be fixed in the next update. Unfortunately, it will be not sooner than after 2 weeks, because I am going on vacation.
by Sergey Tkachenko
Thu Jul 03, 2008 11:32 am
Forum: ScaleRichView
Topic: Create ScaleRichView in runtime
Replies: 5
Views: 24695

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: 17543

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: 103761

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: 10535

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: 42876

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: 42876

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: 21645

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: 14067

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: 24695

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: 62644

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: 17591

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...