Search found 9411 matches

by Sergey Tkachenko
Thu Jun 19, 2008 3:45 pm
Forum: Support
Topic: Save document with margins
Replies: 12
Views: 21370

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

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

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

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

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

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

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 Re...
by Sergey Tkachenko
Tue Jun 17, 2008 11:23 am
Forum: Support
Topic: After copy/paste gif animations don't play
Replies: 13
Views: 21490

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

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

RVE.TopLevelEditor.BeginUndoGroup(rvutInsert); RVE.TopLevelEditor.SetUndoGroupMode(True); try if RVE.InsertPicture(...) then begin RVE.SetCurrentItemExtraIntProperty(rvepImageHeight, ...); RVE.SetCurrentItemExtraIntProperty(rvepImageWidth, ...); RVE.SetCurrentItemExtraStrProperty(rvespAlt, ...); en...
by Sergey Tkachenko
Tue Jun 17, 2008 5:00 am
Forum: Support
Topic: RvHtmlImporter v0.0027 bugs
Replies: 27
Views: 57339

Ok, you can download it here:
http://www.trichview.com/resources/html ... import.zip
Before installing, open rvHtmlViewImport, find and remove {$DEFINE RVFULL}
See also installation instructions in ReadMe.txt
by Sergey Tkachenko
Tue Jun 17, 2008 4:57 am
Forum: Support
Topic: After copy/paste gif animations don't play
Replies: 13
Views: 21490

Please send me example reproducing the problem
by Sergey Tkachenko
Mon Jun 16, 2008 2:20 pm
Forum: Support
Topic: InsertPicture problem
Replies: 1
Views: 7780

Use rve.BeginUpdate ... rve.EndUpdate
by Sergey Tkachenko
Mon Jun 16, 2008 2:19 pm
Forum: Support
Topic: RvHtmlImporter v0.0027 bugs
Replies: 27
Views: 57339

I just uploaded (for registered users) a class for reading HTML from THTMLViewer ( http://www.pbear.com )
by Sergey Tkachenko
Mon Jun 16, 2008 10:56 am
Forum: Support
Topic: After copy/paste gif animations don't play
Replies: 13
Views: 21490

In addition to using this TGifImage, you must also set RichViewEdit.AnimationMode = rvaniOnFormat, and include RVGifAnimate.pas in your project.