Search found 9409 matches

by Sergey Tkachenko
Sat Aug 04, 2007 4:31 pm
Forum: Support
Topic: Problem with addict live spelling
Replies: 6
Views: 15929

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

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

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

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

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

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

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

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.
by Sergey Tkachenko
Mon Jul 30, 2007 11:11 am
Forum: Support
Topic: can't install RichViewActionsD5.dpk
Replies: 8
Views: 22760

The first error, as I understand, in call of FRichViewEdit.RVData.Format_.
Just remove last boolean parameters (one or more, I do not remember)

The second error, use FRichViewEdit.RVData.MarkStylesInUse, not FRichViewEdit.MarkStylesInUse.
by Sergey Tkachenko
Mon Jul 30, 2007 8:10 am
Forum: Support
Topic: can't install RichViewActionsD5.dpk
Replies: 8
Views: 22760

As for the first group of errors, as I understand, the following lines generate it: if Assigned(rve.OnCurTextStyleChanged) then rve.OnCurTextStyleChanged(rve); if Assigned(rve.OnCurParaStyleChanged) then rve.OnCurParaStyleChanged(rve); Change them to: if Assigned(TRichViewEdit(rve).OnCurTextStyleCha...
by Sergey Tkachenko
Mon Jul 30, 2007 7:50 am
Forum: ScaleRichView
Topic: ScaleRichView Compile Error With BDS 2006 - C Builder
Replies: 3
Views: 18043

Sorry, my mistake.
This version of ScaleRichView requires the new version of TRichView, v1.9.43.2
Please update your copy of TRichView.
by Sergey Tkachenko
Sun Jul 29, 2007 5:17 pm
Forum: Support
Topic: Printing problems with ReportBuilder
Replies: 3
Views: 9960

May be paragraphs in your RTF file have negative left indents, overlapping the left margin?
by Sergey Tkachenko
Sat Jul 28, 2007 2:56 pm
Forum: Support
Topic: Gif anim. prob. with using together Alphaskins&Richview
Replies: 6
Views: 14396

It's strange, only one timer is used for all animations in TRichView.
Is the source code there complete? I cannot see where you insert these gifs
by Sergey Tkachenko
Sat Jul 28, 2007 1:11 pm
Forum: Support
Topic: Gif anim. prob. with using together Alphaskins&Richview
Replies: 6
Views: 14396

I tried exe file, it works ok for me.
What is wrong?