Search found 9445 matches

by Sergey Tkachenko
Wed Aug 13, 2008 6:28 pm
Forum: Support
Topic: RichViewFormat to text
Replies: 7
Views: 17870

(Please use English in this forum). Unfortunately, text extraction from RVF is not implemented. The main problem is extracting text from tables, because Delphi streaming mechanism is used for saving/loading tables in RVF. You may consider using RTF, if you do not need features that cannot be saved i...
by Sergey Tkachenko
Wed Aug 13, 2008 6:23 pm
Forum: Support
Topic: Small Help file error
Replies: 1
Views: 8333

Thank you.
TRVMemoryStream is almost the same as TMemoryStream, but faster for large data size.
by Sergey Tkachenko
Wed Aug 13, 2008 4:04 pm
Forum: Support
Topic: Addict don't work with latest TRichView
Replies: 2
Views: 9954

Yes, in the latest version some internal functions were changed, so the parser for Addict was rewritten. The new version can be downloaded (note "b" at the end of the file name).
by Sergey Tkachenko
Wed Aug 13, 2008 4:03 pm
Forum: Support
Topic: Double-Byte RTF stream?
Replies: 1
Views: 7539

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

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

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

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

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

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

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

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

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

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

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

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