Search found 9736 matches

by Sergey Tkachenko
Wed Jun 18, 2008 4:44 am
Forum: Support
Topic: After copy/paste gif animations don't play
Replies: 13
Views: 24491

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

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

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

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

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

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

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

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

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

In addition to using this TGifImage, you must also set RichViewEdit.AnimationMode = rvaniOnFormat, and include RVGifAnimate.pas in your project.
by Sergey Tkachenko
Mon Jun 16, 2008 10:53 am
Forum: ScaleRichView
Topic: Compiled Demo/font appearance
Replies: 24
Views: 114139

TRichView is already updated, make sure that you use version 10.2.
If you already installed this version, then delete files of the older TRichView version, because it looks like Delphi tries to compile ScaleRichView with the older version of TRichView.

Besides, it looks like your version of ...
by Sergey Tkachenko
Mon Jun 16, 2008 10:16 am
Forum: Support
Topic: After copy/paste gif animations don't play
Replies: 13
Views: 24491

See here: http://www.trichview.com/forums/viewtopic.php?t=89 (the 2nd and 3rd posts)
by Sergey Tkachenko
Sun Jun 15, 2008 4:46 pm
Forum: Support
Topic: print a selected part of a memo by QuickReport
Replies: 2
Views: 11240

I believe it is because saving to database causes reloading (because the document is reloaded if the database content is changed), and the selection is lost. You can save the selection before and restore it after calling DuenneTabLinien.
by Sergey Tkachenko
Fri Jun 13, 2008 9:31 am
Forum: Support
Topic: Unrecognizable Code when be selected in richviewedit
Replies: 2
Views: 10838

Sorry, what is unrecognizable codes?
Please send me a simple project reproducing this problem.
by Sergey Tkachenko
Thu Jun 12, 2008 5:15 pm
Forum: ScaleRichView
Topic: Page size settings vs. printed page settings
Replies: 2
Views: 22792

ScaleRichView allows printing in another page format (with scaling) using TSRVPrint component. There is an example of using this component to print posters, but it may be too complicated for this simple task.
Ilya will make a simpler example soon.