Search found 9391 matches

by Sergey Tkachenko
Wed Jun 25, 2008 3:55 pm
Forum: Support
Topic: How to input unicode in table cell
Replies: 5
Views: 11783

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

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

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

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

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

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

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

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

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

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...
by Sergey Tkachenko
Thu Jun 19, 2008 3:45 pm
Forum: Support
Topic: Save document with margins
Replies: 12
Views: 21137

Please resend to richview at gmail com.
But exe files are not accepted even in zip or rar.
by Sergey Tkachenko
Thu Jun 19, 2008 2:11 pm
Forum: Support
Topic: Save document with margins
Replies: 12
Views: 21137

Still not received. If it has exe-file, please remove it, mail server rejects executables.
by Sergey Tkachenko
Thu Jun 19, 2008 12:47 pm
Forum: Support
Topic: Protected Paragraph Help...
Replies: 9
Views: 21828

Sorry, I do not understand the question. When the caret is in read-only paragraph (rvpaoReadOnly in Options), the user cannot do any editing operations - no typing, no delete, no backspace. The only allowed editing procedure is pressing Enter at the beginning and at the end of this paragraph. If you...
by Sergey Tkachenko
Thu Jun 19, 2008 12:38 pm
Forum: Support
Topic: DBRichView problem
Replies: 2
Views: 7942

Make sure that RTFReadProperties.TextStyleMode and RTFReadProperties.ParaStyleMode are set to rvrsAddIfNeeded for the editor. (Or, better, right click the editor in Delphi, choose "Settings" in the context menu, and make sure that "Allow adding styles dynamically" is set). Beside...
by Sergey Tkachenko
Thu Jun 19, 2008 12:34 pm
Forum: Support
Topic: Conjuction between \slN & \slmultN
Replies: 1
Views: 6825

I did not study it yet, because TRichView does not support "at least" and "exactly" modes.
Obviously, "single", "double" are special cases of "multiple".