Search found 9415 matches

by Sergey Tkachenko
Thu Aug 09, 2007 8:58 am
Forum: Support
Topic: Vista Theme compatibility.
Replies: 6
Views: 13736

Can you send me a simple project to reproduce this bug?
by Sergey Tkachenko
Wed Aug 08, 2007 4:06 pm
Forum: Support
Topic: Vista Theme compatibility.
Replies: 6
Views: 13736

I thought that enabling XP themes enables using Vista theme too...
by Sergey Tkachenko
Tue Aug 07, 2007 7:14 pm
Forum: ScaleRichView
Topic: Page Sizes
Replies: 21
Views: 65973

Sorry, it is taking more time than we expected. We decided to make a complete solution, with adding new properties to TRichView (instead of ScaleRichView providing additional data to save in RVF). In this way, we will be able to store page information not only in RVF, but in RTF too. The update will...
by Sergey Tkachenko
Tue Aug 07, 2007 7:05 pm
Forum: Support
Topic: Why no spaces in tags?
Replies: 1
Views: 8061

This limitation was removed a long ago. You can include any characters in tags, except for #0, #13 and #10.
The comment will be deleted.
by Sergey Tkachenko
Sun Aug 05, 2007 9:10 am
Forum: Support
Topic: Contents of RichViewEdit changes when printing
Replies: 4
Views: 15566

Can you send me a simple project to test?
by Sergey Tkachenko
Sun Aug 05, 2007 9:07 am
Forum: Support
Topic: executable size
Replies: 2
Views: 8608

Make sure that you turned optimization on and excluded debug info. You can exclude some TRichView features that you do not use, see RV_Defs.inc (of course, source code version is required for this). But if you use RichViewActions, you cannot exclude the most of these features. You can remove unneces...
by Sergey Tkachenko
Sat Aug 04, 2007 4:31 pm
Forum: Support
Topic: Problem with addict live spelling
Replies: 6
Views: 15957

Sorry, I cannot promize that this this feature will be implemented to this day.

ClearLiveSpellingResults stops live spelling.
by Sergey Tkachenko
Fri Aug 03, 2007 11:25 am
Forum: Support
Topic: Changing fonts for runtime created TRichViewEdit
Replies: 2
Views: 9841

One note: initial values of TRichViewEdit properties are different for components placed on form at designtime and for components created at runtime. For components placed on form at designtime, initial values are defined in the component editor (right click, "Settings"). For components cr...
by Sergey Tkachenko
Fri Aug 03, 2007 11:16 am
Forum: Support
Topic: Contents of RichViewEdit changes when printing
Replies: 4
Views: 15566

It's not possible, because TRVPrint.rv does not have its own items, it uses items from TCustomRichView assigned in AssignSource method.

You need to create a new of TRichView (hidden), copy document to it, do modifications, then print this hidden TRichView.
by Sergey Tkachenko
Fri Aug 03, 2007 11:12 am
Forum: Support
Topic: Insert Pagebreak in TRichView
Replies: 2
Views: 8850

This code adds page break befor the picture: ... RichView1.AddPictureEx('', jpeg, -1, rvvaMiddle); RichView1.PageBreaksBeforeItems[RichView1.ItemCount-1] := True; ... Unfortunately, TRichView does not allow to determine this distance (it's only possible, using undocumented methods, when the document...
by Sergey Tkachenko
Fri Aug 03, 2007 11:08 am
Forum: Support
Topic: Inserted Images
Replies: 5
Views: 17954

You can use either OnSaveImage2 or OnHTMLSaveImage. They have the same functionality, but different parameters. Both events allow to modify <img src>. Just assign new file name to Location parameter and set DoDefault parameter to False. In OnSaveImage2, there is a parameter containing graphic to sav...
by Sergey Tkachenko
Fri Aug 03, 2007 10:47 am
Forum: Support
Topic: Sent an email to [email protected] but no reply
Replies: 7
Views: 18021

Not yet. I'll try to do it this weekend.
by Sergey Tkachenko
Wed Aug 01, 2007 5:22 am
Forum: ScaleRichView
Topic: Page Orientation Not Saved
Replies: 5
Views: 23929

Currently, ScaleRichView does not save additional information in RVF. The same information as from TRichView is saved. Yes, I agree, we must decide how to save page info. Probably, at least in the first version, it will be saved in DocProperties. The solution will be this week. You can save addition...
by Sergey Tkachenko
Tue Jul 31, 2007 4:13 am
Forum: ScaleRichView
Topic: Addict Spell Check problems
Replies: 12
Views: 54138

Livespelling is not implemented by 100% in ScaleRichView.
It works, but red underlines appear only on next repainting of SRichViewEdit.
It will be fixed sooner or later.