Search found 9429 matches

by Sergey Tkachenko
Sat Jul 12, 2008 6:25 pm
Forum: Support
Topic: RVActions - RVAControlPanel
Replies: 1
Views: 7864

Please read notes for the last update of actions in the Announcement forum
by Sergey Tkachenko
Sat Jul 12, 2008 6:23 pm
Forum: Support
Topic: Missing RichView components for Addict3.5
Replies: 10
Views: 21565

adrvb requires trichView 10.3, where TRVSerializer was rewritten
by Sergey Tkachenko
Sat Jul 12, 2008 6:19 pm
Forum: Support
Topic: AppendRVFFromStream showing errors
Replies: 5
Views: 15369

Did you update TrichView to the latest version? this problem must be fixed
by Sergey Tkachenko
Sat Jul 12, 2008 6:17 pm
Forum: Support
Topic: TDBRichViewEdit Options
Replies: 6
Views: 15040

Right click the editor in Delphi, choose Settings in the popup menu, set "Allow adding styles dynamically" mode. Do it both for editors that save data and for editors that display data.
by Sergey Tkachenko
Sat Jul 12, 2008 6:10 pm
Forum: Support
Topic: Problem saving HTMLex with table
Replies: 4
Views: 12177

Sorry, i do not have sources here. It must be in Rv_Defs.inc for TrichView 10.3, search for "pbear" or "html" in this file.
by Sergey Tkachenko
Sat Jul 12, 2008 6:06 pm
Forum: Support
Topic: Saving problem with TRichview and HTMLex
Replies: 6
Views: 15488

TRvHtmlImporter or new TrvHtmlViewImporter?
by Sergey Tkachenko
Wed Jul 09, 2008 7:33 pm
Forum: Support
Topic: Saving problem with TRichview and HTMLex
Replies: 6
Views: 15488

in this mode, trichview stores image paths as they are written in the items properties. do you use html importer, or how else arr file names written in items properties?
by Sergey Tkachenko
Wed Jul 09, 2008 7:29 pm
Forum: Support
Topic: Problem saving HTMLex with table
Replies: 4
Views: 12177

I suppose you use Pbear's html importer. Unfortunately pbear's component has a bug in loading table border, in some cases it makes it 4 pixels. I'll try to find this bug. meanwhile the latest version of trichview has define / see rv_defs.inc / to generate html compatible with this parser / by adding...
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: 9135

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

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

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

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

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

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

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