Search found 9442 matches

by Sergey Tkachenko
Wed Aug 13, 2008 4:03 pm
Forum: Support
Topic: Double-Byte RTF stream?
Replies: 1
Views: 7526

Normally, RTF contains only characters with codes <127 (except for the mode when pictures are saved in a binary form, which is rarely used). So, RTF data can be easily converted from UTF16 to ANSI. Just load this RTF in WideString, assign this WideString to String (a conversion will be performed), s...
by Sergey Tkachenko
Wed Aug 13, 2008 3:58 pm
Forum: Support
Topic: TRichView Release for Tiburon
Replies: 3
Views: 9764

As soon as it will be possible.
But I cannot discuss Tiburon until it will be released.
by Sergey Tkachenko
Wed Aug 13, 2008 3:56 pm
Forum: Support
Topic: Version 10, but still no multilanguage support
Replies: 3
Views: 12123

1) First, I really recommend to use Unicode in TRichViewEdit, and forget about all charsets and WM_INPUTLANGCHANGE ( http://www.trichview.com/forums/viewtopic.php?t=70 ) 2) If you, for some reasons, do not want to use Unicode, you can include rvoAutoSwitchLang in RichViewEdit.EditorOptions. With thi...
by Sergey Tkachenko
Mon Aug 11, 2008 8:48 am
Forum: Support
Topic: Tables selection bug in 10.3
Replies: 5
Views: 15043

I confirm this bug, it was introduced in v10.3 (or in other recent update).
The problem is with Cell.VAlign.
Fix will be uploaded in this week.
by Sergey Tkachenko
Mon Aug 11, 2008 8:20 am
Forum: Support
Topic: Replacing all 'simiar' text occurrencies in richviewedit
Replies: 1
Views: 16369

If SearchText finds the string, it selects it. You can get the full text of the item containing the selection as rve.TopLevelEditor.GetItemTextA(rve.TopLevelEditor.CurItemNo) (because SearchText can select only inside a single item). This text will include the full code (e.g. "{bmc xyz.jpg}&quo...
by Sergey Tkachenko
Fri Aug 08, 2008 3:44 pm
Forum: Support
Topic: Why TAB character consists with two characters?
Replies: 4
Views: 12426

I confirm the bug.
These methods add tabulator + empty text item.
It will be fixed in the next update.
While you can use InsertTab method.
by Sergey Tkachenko
Fri Aug 08, 2008 6:40 am
Forum: Support
Topic: Why TAB character consists with two characters?
Replies: 4
Views: 12426

May be because 2 tab characters there?
Please send me example how to reproduce.
by Sergey Tkachenko
Fri Aug 08, 2008 6:39 am
Forum: Support
Topic: Tables selection bug in 10.3
Replies: 5
Views: 15043

Please send me example how to reproduce.
by Sergey Tkachenko
Thu Aug 07, 2008 5:27 pm
Forum: Support
Topic: Ending tabulators cause error
Replies: 2
Views: 8036

GetCurrent*** methods return information about the item at the position of caret. GetCurrentTextInfo returns information for text item. If the caret is not in the text item (and tabulator is NOT a text item in TRichView), it raises the exception. So this is by design. What do you want to implement? ...
by Sergey Tkachenko
Thu Aug 07, 2008 5:18 pm
Forum: Support
Topic: TRichView Unicode support
Replies: 2
Views: 8608

DBCS was not implemented because all necessary functionality can be implemented using Unicode. While text is Unicode internally, you can still load and save DBCS text files. I highly recommend to use Unicode instead of trying implementing DBCS in TRichView. If you find problems with Unicode processi...
by Sergey Tkachenko
Thu Aug 07, 2008 12:13 pm
Forum: ScaleRichView
Topic: string underlined like in spelling
Replies: 18
Views: 59788

Answered by e-mail.
by Sergey Tkachenko
Wed Aug 06, 2008 5:02 pm
Forum: Support
Topic: XHTML and li/@value attribute
Replies: 2
Views: 10627

When I tried to implement HTML saving of list styles, I tried CSS counters at first. But unfortunately, at that time, none of browsers supported them. I do not know how it is now, but since IE6 is still widely used, I cannot use them. And unfortunately, CSS does not allow to control counter values f...
by Sergey Tkachenko
Tue Aug 05, 2008 3:48 pm
Forum: Support
Topic: In Vista, Office converter is not importing *.doc file
Replies: 5
Views: 18234

No, the new DOC export converters just report error when functions from them are called. They either require some special (the most probably undocumented) settings, or they check if they are called from Word or not.
But again, this problem occurs only for export converters for *.doc files.
by Sergey Tkachenko
Tue Aug 05, 2008 3:45 pm
Forum: Support
Topic: Recover the Filename of Picture when Html Saving
Replies: 8
Views: 21261

Yes, if image file name is specified in the proper property for picture, table or table cell, it is assigned as a default value of Location parameter in OnHTMLSaveImage. But for the main background, file name is not stored. You must store it somewhere yourself. This event stores the main background ...
by Sergey Tkachenko
Tue Aug 05, 2008 3:30 pm
Forum: Support
Topic: How to read styles from External CSS file
Replies: 3
Views: 13787

TRVHtmlImporter can still only import CSS saved by RichView.SaveHTMLEx. But the new importer was developed: TRVHtmlViewImporter. It uses the components from http://www.pbear.com (they are freeware with source code). TRVHtmlViewImporter is here: http://www.trichview.com/resources/htmlview/rvhtmlviewi...