Search found 9411 matches

by Sergey Tkachenko
Wed Oct 17, 2007 4:17 pm
Forum: Support
Topic: Tables in CBuilder
Replies: 4
Views: 11480

Delphi constructors are converted to C++ constructors with the same parameters (but without name, because C++ constructors do not have names). So the code is: rvTable = new TRVTableItemInfo(2, 3, rvDoc->RVData); For example of creating tables, see Demos\CBuilder\Editors\Editor 1\, commands in "...
by Sergey Tkachenko
Wed Oct 17, 2007 4:13 pm
Forum: Support
Topic: TRichViewEdit and server DLL
Replies: 3
Views: 11154

Saving RTF with tables requires formatted document (because table grid must be calculated). If SaveRTF detects that table is not formatted, it tries to format it. But if TRVReportHelper is not initialized, it fails. Solution: call RVReportHelper.Init with any width as a parameter before calling Save...
by Sergey Tkachenko
Tue Oct 16, 2007 12:11 pm
Forum: Support
Topic: Showing "soft" page breaks
Replies: 1
Views: 8301

No, soft page break can be shown only when TRVPrint is formatted (after calling FormatPages). Any change in TRichViewEdit makes previous TRVPrint formatting invalid.
by Sergey Tkachenko
Tue Oct 16, 2007 8:56 am
Forum: Support
Topic: double underline . Possible ?
Replies: 7
Views: 18259

Days.
I already implemented a half of work (new properties (UnderlineType, UnderlineColor, HoverUnderlineColor) and 50% of drawing).
I plan to implement the rest of drawing, RTF and HTML support before the end of this week.
by Sergey Tkachenko
Tue Oct 16, 2007 8:30 am
Forum: Support
Topic: Load From Stream Not Saving to Dataset
Replies: 2
Views: 8398

Change LoadRVFFromStream to InsertRVFFromStreamEd.
Additional information can be found in the help file, example 1 ("Using viewer-style methods in DBRichViewEdit") in the topic about TDBRichViewEdit.
by Sergey Tkachenko
Tue Oct 16, 2007 8:19 am
Forum: Support
Topic: TRichViewEdit and server DLL
Replies: 3
Views: 11154

In the latest version (available for registered users) TRVReportHelper does not require parent.
by Sergey Tkachenko
Mon Oct 15, 2007 4:34 pm
Forum: Support
Topic: double underline . Possible ?
Replies: 7
Views: 18259

In the next update, various underline styles will be available: normal, double, thick, dotted, dashed, dash-dotted and so on.
UnderlineColor property will be added as well.
by Sergey Tkachenko
Sun Oct 14, 2007 12:59 pm
Forum: Support
Topic: suggest add some font style
Replies: 3
Views: 12922

Probably, several styles of underline and underline color will be added in the next update.
by Sergey Tkachenko
Sat Oct 13, 2007 2:08 pm
Forum: Support
Topic: How I can a marked table-cell the cell-color alter
Replies: 1
Views: 7073

Do you want to know how to change background color for selected cells? This code makes the selected cells red (as an editing operation): procedure TForm1.Color1Click(Sender: TObject); var rve: TCustomRichViewEdit; table: TRVTableItemInfo; r,c,i: Integer; begin if not RichViewEdit1.CanChange or not R...
by Sergey Tkachenko
Fri Oct 12, 2007 6:11 pm
Forum: Support
Topic: Offer: License for translation (German, Spanish, Portuguese)
Replies: 4
Views: 12831

Portuguese translator found.
German is seems to be found too (waiting for confimation).
Spanish translator is still wanted.
by Sergey Tkachenko
Fri Oct 12, 2007 6:07 pm
Forum: Support
Topic: Internal Hyperlink in RTF documents
Replies: 9
Views: 31185

Unfortunately, references are not supported yet.
You can insert RTF code in the specific place of document in 2 ways:
1) Insert text with rvteoRTFCode in Options of text style (and protected, so that user cannot edit it)
2) Insert some component, and use OnSaveComponentToFile event.
by Sergey Tkachenko
Fri Oct 12, 2007 6:03 pm
Forum: Support
Topic: suggest add some font style
Replies: 3
Views: 12922

I can see double strike option, but cannot see strikethough line style and color (Word 2003)
by Sergey Tkachenko
Fri Oct 12, 2007 6:00 pm
Forum: Support
Topic: double underline . Possible ?
Replies: 7
Views: 18259

Currently, it's only possible using custom drawing (in OnDrawStyleText event).
Please wait a day or two, I'll see, may be I'll include this feature in the next update.
by Sergey Tkachenko
Fri Oct 12, 2007 5:55 pm
Forum: Support
Topic: Copy from TRichViewEdit to clipboard
Replies: 2
Views: 8531

Only selected fragment is copied. In addition, TRVStyle is required: form := TForm.Create(nil); rich := TRichViewEdit.Create(form); rich.Name := 'rich1'; rich.Parent := form; rvstyle := TRVStyle.Create(form); rich.Style := rvstyle; memoryStream.Position := 0; rich.LoadTextFromStream(memoryStream) ri...
by Sergey Tkachenko
Fri Oct 12, 2007 5:50 pm
Forum: Support
Topic: Offer: License for translation (German, Spanish, Portuguese)
Replies: 4
Views: 12831

We do not have French version of web site yet.
For Spanish, Portuguese, German I need only translation of updates, for French it would require translation of the whole web site (all pages except for "application" and "history" section). It's a lot of work.