Search found 9731 matches

by Sergey Tkachenko
Sat Jun 21, 2008 9:08 am
Forum: Support
Topic: AppendRVFFromStream showing errors
Replies: 5
Views: 19656

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 ...
by Sergey Tkachenko
Sat Jun 21, 2008 7:44 am
Forum: Support
Topic: Protected Paragraph Help...
Replies: 9
Views: 29036

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

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

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

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

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

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

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

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).
Besides, if you edit in ...
by Sergey Tkachenko
Thu Jun 19, 2008 12:34 pm
Forum: Support
Topic: Conjuction between \slN & \slmultN
Replies: 1
Views: 7657

I did not study it yet, because TRichView does not support "at least" and "exactly" modes.
Obviously, "single", "double" are special cases of "multiple".
by Sergey Tkachenko
Wed Jun 18, 2008 4:44 am
Forum: Support
Topic: After copy/paste gif animations don't play
Replies: 13
Views: 24430

You still need to register it RegisterClass(TGifImage)
by Sergey Tkachenko
Tue Jun 17, 2008 2:41 pm
Forum: Support
Topic: After copy/paste gif animations don't play
Replies: 13
Views: 24430

This problem happens because you have two TGifImage classes - from RxGif.pas and from GifImage.pas.
When you insert TGifImage, you insert GifImage.TGifImage, because GifImage is included in "uses" of your unit. But when pasting, RxGif.TGifImage is inserted (because it is registered with ...
by Sergey Tkachenko
Tue Jun 17, 2008 11:23 am
Forum: Support
Topic: After copy/paste gif animations don't play
Replies: 13
Views: 24430

Exe file will be rejected by the mail server (even in zip)
by Sergey Tkachenko
Tue Jun 17, 2008 5:07 am
Forum: Support
Topic: Undo type selection
Replies: 2
Views: 10819

Actually, undo type (specified in BeginUndoGroup) is not used by TRichView itself. It can be read by UndoAction/RedoAction methods, and you can display its caption in undo/redo menu, like the demo Demos\Delphi\Editors\Editor 1\
by Sergey Tkachenko
Tue Jun 17, 2008 5:05 am
Forum: Support
Topic: Undo type selection
Replies: 2
Views: 10819

RVE.TopLevelEditor.BeginUndoGroup(rvutInsert);
RVE.TopLevelEditor.SetUndoGroupMode(True);
try
if RVE.InsertPicture(...) then begin
RVE.SetCurrentItemExtraIntProperty(rvepImageHeight, ...);
RVE.SetCurrentItemExtraIntProperty(rvepImageWidth, ...);
RVE.SetCurrentItemExtraStrProperty(rvespAlt ...