Search found 9411 matches

by Sergey Tkachenko
Mon Jun 16, 2008 10:53 am
Forum: ScaleRichView
Topic: Compiled Demo/font appearance
Replies: 24
Views: 76150

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 ScaleRic...
by Sergey Tkachenko
Mon Jun 16, 2008 10:16 am
Forum: Support
Topic: After copy/paste gif animations don't play
Replies: 13
Views: 21488

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

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

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

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.
by Sergey Tkachenko
Thu Jun 12, 2008 4:18 pm
Forum: Support
Topic: Incorporating RVF into an XML file
Replies: 1
Views: 8711

Normally, RVF may use characters between 128 and 255, even in text mode (rvfoSaveBinary is excluded from RVFOptions). But if all text is Unicode, it will be stored as hexadecimal string, all character codes < 128. So the only places where characters with codes >= 128 may still occur are: - tags, if ...
by Sergey Tkachenko
Wed Jun 11, 2008 7:13 pm
Forum: ScaleRichView
Topic: Compiled Demo/font appearance
Replies: 24
Views: 76150

The problem with widescreen displays is fixed.
by Sergey Tkachenko
Wed Jun 11, 2008 7:10 pm
Forum: ScaleRichView
Topic: ScaleRichView - shareware TRichView addon for WYSIWYG edit
Replies: 19
Views: 99890

Update 2008-Jun-11: ScaleRichView v1.5.0 Requires: TRichView v10.2 RichViewActions v1.63 The main feature of this update: cardinal changes in drawing procedures. More accurate text scaling, no more problems with wide displays. New PageProperty.PrintableAreaPen property shows area where the current ...
by Sergey Tkachenko
Wed Jun 11, 2008 6:31 pm
Forum: Support
Topic: Export Header/Footer to RTF
Replies: 24
Views: 70198

Finally, TRichView can save formatted headers and footers in RTF. Update is uploaded for registered users.
by Sergey Tkachenko
Wed Jun 11, 2008 6:13 pm
Forum: Support
Topic: Exception Invalid Imagelist
Replies: 1
Views: 8858

Sorry, but it looks like this problem is not related to TRichView. This is the problem with TImageList. Your image list has 0x0 size, probably Vista does not accept it. There is one thing to try. Open RVItem.pas, find the call of ImageList_DrawEx and put it in try...except: ... try ImageList_DrawEx(...
by Sergey Tkachenko
Wed Jun 11, 2008 6:08 pm
Forum: Support
Topic: Recommendation indy and trichview
Replies: 5
Views: 17112

The chat example from that topic ( http://www.trichview.com/forums/viewtopic.php?t=63 ) loads emoticons from files. It loads from bitmaps, but you can load gifs instead, just change TBitmap to TGifImage. This demo is configurable - you can define your own codes for emoticons and your own graphic fil...
by Sergey Tkachenko
Wed Jun 11, 2008 6:02 pm
Forum: Support
Topic: In Vista, Office converter is not importing *.doc file
Replies: 5
Views: 18017

Sorry, I was wrong. The problem is with Word2007's DOC export converters, not with import converters. They should work fine. Probably you just use wrong converter for this type of files. There are two DOC files of different formats: - Word 6/95 doc files; - Word 97 and newer doc files. The proper co...
by Sergey Tkachenko
Wed Jun 11, 2008 5:01 am
Forum: Support
Topic: Gnostice RichView Export interface
Replies: 10
Views: 23949

PreviewCorrection is described in the topic about TCustomRVPrint, ancestor of TRVPrint.
These icons are used for Delphi 2005-2007.
by Sergey Tkachenko
Wed Jun 11, 2008 4:58 am
Forum: Support
Topic: Recommendation indy and trichview
Replies: 5
Views: 17112

It's not necessary to create temporary files, you can use SaveRVFToStream/LoadRVFFromStream to write/read from stream.
And, as far as I understand how it works, you will need to invent some kind of transfer protocol, so that your applications will understand what is received.
by Sergey Tkachenko
Tue Jun 10, 2008 5:43 pm
Forum: Support
Topic: Recommendation indy and trichview
Replies: 5
Views: 17112

If you want to implement chat, may be it makes sense to send plain text strings between computers, then on target computer replace emoticons codes with images when insering in TRichView?
Text can be entered in TEdit, example can be found here: http://www.trichview.com/forums/viewtopic.php?t=63