Search found 9391 matches

by Sergey Tkachenko
Wed Jul 09, 2008 7:24 pm
Forum: Support
Topic: How to saving and loading OLE in TDBRichViewEdit(RTF)?
Replies: 2
Views: 9020

you can find info here:
http://www.trichview.com/forums/viewtopic.php?t=118
Unfortunately, I was not able to find solution good enough to include this feature in the component itself
by Sergey Tkachenko
Wed Jul 09, 2008 7:19 pm
Forum: Support
Topic: Lazarus Cross platform Support Windows/MAC
Replies: 1
Views: 7745

sorry, lazarus port is not in my plans, at least not for near future
by Sergey Tkachenko
Fri Jul 04, 2008 5:01 pm
Forum: Support
Topic: Away: July 5-20
Replies: 0
Views: 10643

Away: July 5-20

I will be out of office from July 5 till July 20. I will try answering the most of questions on this forum, the rest of questions will be answered when I return. Orders will be processed as usual. Ilya ( proxy3d ) is here and can answer questions about ScaleRichView. If you have an urgent question, ...
by Sergey Tkachenko
Thu Jul 03, 2008 8:00 pm
Forum: Support
Topic: rvrb102006.bpl not compatible with RB10.10.5
Replies: 3
Views: 10428

This error does not affect the result, all is ok.
Please send it to me to [email protected]
by Sergey Tkachenko
Thu Jul 03, 2008 7:57 pm
Forum: Support
Topic: Missing RichView components for Addict3.5
Replies: 10
Views: 21310

This file is from another package: TRichView wrapper for Addict 3. If you use the latest version of TRichView (v10.3), use the wrapper from http://www.trichview.com/resources/adrv3/adrv3b.zip If you use previous version, use the wrapper from http://www.trichview.com/resources/adrv3/adrv3.zip If you ...
by Sergey Tkachenko
Thu Jul 03, 2008 5:30 pm
Forum: Support
Topic: AppendRVFFromStream - No Bullets ?
Replies: 9
Views: 38070

And rvvaAbsMiddle is not a valid value for Cell->VAlign.
Available values for Cell->VAlign: rvcTop, rvcMiddle, rvcBottom, rvcVDefault (TRVCellVAlign type).

rvvaAbsMiddle can be used only for VAlign of items, not cells. It is of TRVVAlign type.
by Sergey Tkachenko
Thu Jul 03, 2008 5:25 pm
Forum: Support
Topic: AppendRVFFromStream - No Bullets ?
Replies: 9
Views: 38070

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

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

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

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

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

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

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

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

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