Search found 9411 matches

by Sergey Tkachenko
Fri Jun 27, 2008 5:07 pm
Forum: Support
Topic: LoadRVFFromStream and problems with bullets
Replies: 13
Views: 26310

As I said before, I am afraid I cannot help without a sample of problematic RVF file.
by Sergey Tkachenko
Fri Jun 27, 2008 5:04 pm
Forum: Support
Topic: How to input unicode in table cell
Replies: 5
Views: 11879

Please give very precise step-by-step instructions how to reproduce this problem. For me, all is ok, I can type Chinese text in table cells using phonetic IME, and they are displayed properly.
by Sergey Tkachenko
Thu Jun 26, 2008 4:16 pm
Forum: Support
Topic: How to input unicode in table cell
Replies: 5
Views: 11879

No, in Unicode it must not be a problem.
Please send me a project reproducing this problem.
by Sergey Tkachenko
Thu Jun 26, 2008 11:10 am
Forum: Support
Topic: First Line Spacing in a paragraph!
Replies: 6
Views: 15495

Hi, I do not have application with RxRichEdit, but I tried WordPad instead. Both of them are based on richedit control (as far as I understand, standard TRichEdit is based on version 1 of richedit, TRxRichEdit is based on version 2 of richedit, WordPad is based on newer version of RichEdit). In your...
by Sergey Tkachenko
Wed Jun 25, 2008 7:33 pm
Forum: Support
Topic: Editor in RichView Wrapper fo Report Builder
Replies: 1
Views: 7878

Do you mean rich text editor? No, you cannot use it, because it is based on TRichEdit. With TRichEdit-based editor, there it makes no sense to use ppRichView, because all formatting unsupported by TRichEdit will be lost. But you can create your own editor instead, see the comments in ppRichViewCusto...
by Sergey Tkachenko
Wed Jun 25, 2008 3:55 pm
Forum: Support
Topic: How to input unicode in table cell
Replies: 5
Views: 11879

I just created a test project - placed RichViewEdit, RVStyle and Button on the form, and added the following code: procedure TForm1.FormCreate(Sender: TObject); var i: Integer; begin RichViewEdit1.RTFReadProperties.UnicodeMode := rvruOnlyUnicode; RichViewEdit1.Clear; for i := 0 to RVStyle1.TextStyle...
by Sergey Tkachenko
Wed Jun 25, 2008 1:33 pm
Forum: Support
Topic: First Line Spacing in a paragraph!
Replies: 6
Views: 15495

Please send me this RTF file to [email protected]
by Sergey Tkachenko
Tue Jun 24, 2008 8:04 am
Forum: Support
Topic: copy a col (with content) right to a merged col
Replies: 5
Views: 13624

Sorry, it's very hard to find error in this code. From the first look, it is ok, but I can miss something.
Can you create a project (as simple as possible) reproducing this problem and send it to me?
by Sergey Tkachenko
Tue Jun 24, 2008 7:50 am
Forum: Support
Topic: How to iterate all words in TRichView ?
Replies: 1
Views: 8677

This is the fastest way to replace text in TRichView. But if document contains tables, your code does not replace text in table cells. To process tables, create your procedure basing on AllUpperCase example. And remove all these calls of Format, call Format only one time, before SaveRTFToStream. The...
by Sergey Tkachenko
Mon Jun 23, 2008 4:08 pm
Forum: Support
Topic: First Line Spacing in a paragraph!
Replies: 6
Views: 15495

There are 3 vertical spacing properties for the paragraph: SpaceBefore - spacing before the paragraph, SpaceAfter - spacing after the paragraph, LineSpacing - spacing between lines of the paragraph, added AFTER each line. None of known word processors can define SpaceBefore or SpaceAfter in Percent ...
by Sergey Tkachenko
Sat Jun 21, 2008 9:08 am
Forum: Support
Topic: AppendRVFFromStream showing errors
Replies: 5
Views: 15325

I confirm the problem in RVF insertion (not loading) methods when RVF file was saved with [rvfoUseStyleNames, rvfoSave***Styles] in RVFOptions (i.e. it contains collections of styles and style names are used instead of style indices), and inserted with [rvfoLoad***Styles] in RVFOptions (i.e. collect...
by Sergey Tkachenko
Sat Jun 21, 2008 7:44 am
Forum: Support
Topic: Protected Paragraph Help...
Replies: 9
Views: 21944

Confirmed: "sticking" options did not protect from Enter.
I fixed it, will be uploaded with the next update.
by Sergey Tkachenko
Sat Jun 21, 2008 4:28 am
Forum: Support
Topic: Protected Paragraph Help...
Replies: 9
Views: 21944

If you can press Enter at the beginning of text with "stick to top" protection, it is a bug, I'll fix it in the next update.

I thought that you want to disallow deletion of this paragraph. If not, exclude rvprDeleteProtect.
by Sergey Tkachenko
Sat Jun 21, 2008 4:26 am
Forum: Support
Topic: RvHtmlImporter v0.0027 bugs
Replies: 27
Views: 57341

Can you load HTMLViewer and HTMLViewImporter packages in C++Builder 2006? The packages provided in my zip file generate both Delphi (dcu) and C++Builder (obj+hpp) files.
by Sergey Tkachenko
Thu Jun 19, 2008 3:52 pm
Forum: Support
Topic: Protected Paragraph Help...
Replies: 9
Views: 21944

Well, really, if the user deletes all editable content, the caret will be in the first paragraph, and he/she will not be able to edit. Try to use text protection instead of paragraph protection. Include the following options in the Protection property of text style: rvprStyleProtect, rvprModifyProte...