Search found 9411 matches

by Sergey Tkachenko
Fri Nov 09, 2007 3:49 pm
Forum: Support
Topic: Get exception "cant modify empty undo list"
Replies: 3
Views: 10798

The error may occur, for example, because of mismatched calls of SetUndoGroupMode. Do you call this method?
by Sergey Tkachenko
Thu Nov 08, 2007 3:13 pm
Forum: Support
Topic: TRichViewEdit, Actions and ExpressBars
Replies: 2
Views: 10891

I am not sure how DevExpress buttons work, but probably some button's property must be set to allow it be checked (stay pressed)
by Sergey Tkachenko
Wed Nov 07, 2007 3:32 pm
Forum: Support
Topic: I have an question about TRichViewEdit
Replies: 26
Views: 48160

No, you can only insert pictures (TBitmap, TMetafile or other, inherited from TGraphic) or Delphi controls in text.
by Sergey Tkachenko
Wed Nov 07, 2007 6:59 am
Forum: ScaleRichView
Topic: Compiled Demo/font appearance
Replies: 24
Views: 76501

May be I still do not understand the source of the problem. To my opinion, document in zoom = 100% and zoom = 101% must look almost identically. If it is displayed wrong, the whole drawing procedure must be changed, not only displaying in 100%. (Moreover, as far as I know how ScaleRichView works, do...
by Sergey Tkachenko
Tue Nov 06, 2007 4:30 pm
Forum: ScaleRichView
Topic: Compiled Demo/font appearance
Replies: 24
Views: 76501

But I believe in components displaying scaled text, it is always scaled. They do not have two drawing functions, one for scaled text and one for 100% zoom.
by Sergey Tkachenko
Tue Nov 06, 2007 1:21 pm
Forum: Support
Topic: CaretPos in Pixels
Replies: 2
Views: 8161

EM_POSFROMCHAR is not supported.
As for displaying menu at the caret position, see the demo
Demos\Delphi\Assorted\AutoComplete\
by Sergey Tkachenko
Tue Nov 06, 2007 8:16 am
Forum: Support
Topic: RTF paste problem
Replies: 3
Views: 10543

Set rv.RTFReadProperties.UnicodeMode = rvruOnlyUnicode.
rv.RTFReadProperties.TextStyleMode should be rvrsAddIfNeeded for best results.
by Sergey Tkachenko
Mon Nov 05, 2007 5:08 pm
Forum: ScaleRichView
Topic: ScaleRichView - shareware TRichView addon for WYSIWYG edit
Replies: 19
Views: 100353

Update 2007-Nov-5: ScaleRichView v1.3.3

New redrawing method. More accurate scaling. Much faster!
by Sergey Tkachenko
Mon Nov 05, 2007 5:06 pm
Forum: ScaleRichView
Topic: Compiled Demo/font appearance
Replies: 24
Views: 76501

New compiled demo and trial are uploaded.
While this issue was not targeted specially, the new update has a new redrawing method, so please retest it.
by Sergey Tkachenko
Mon Nov 05, 2007 4:54 pm
Forum: Support
Topic: control focus within table
Replies: 1
Views: 8020

Sorry, I do not understand.
Do you mean when you click TEdit in TRichViewEdit's cell, not TEdit but TRichViewEdit acquires focus?
by Sergey Tkachenko
Sun Nov 04, 2007 11:33 am
Forum: Support
Topic: Problem with instalation of TRichViewXML
Replies: 1
Views: 7249

Answered in private message
by Sergey Tkachenko
Sat Nov 03, 2007 3:02 pm
Forum: Support
Topic: How to search text directly from database field
Replies: 3
Views: 11735

It's quite a complicated work to parse RVF document from database without using trichview control. However, using TDBRichView/TDBRichViewEdit with SearchText is not the fastest way, because TDBRichView/TDBRichViewEdit formats document after loading. Formatting is the slowest operation, it takes long...
by Sergey Tkachenko
Sat Nov 03, 2007 2:45 pm
Forum: Support
Topic: Problem with addict live spelling
Replies: 6
Views: 15936

No, each item still processed separately.
by Sergey Tkachenko
Fri Nov 02, 2007 5:33 pm
Forum: Support
Topic: Cannot Display BLOB From MS Access Database
Replies: 15
Views: 31867

Thank you for ordering!
Information how to apply discount on Addict3 is in the registration e-mail.
by Sergey Tkachenko
Thu Nov 01, 2007 6:25 pm
Forum: Support
Topic: live spell check
Replies: 2
Views: 9989

There are two reasons for this 1) TRichView has special processing for '''' character (#39), but does not have it for '’' character (#146). It will be fixed in the next update. 1) If rv.RTFReadProperties.UnicodeMode = Mixed, 'didn' and 't' are inserted as ANSI text, '’' is inserted as Unicode text. ...