Search found 9390 matches

by Sergey Tkachenko
Fri Aug 03, 2007 11:12 am
Forum: Support
Topic: Insert Pagebreak in TRichView
Replies: 2
Views: 8790

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

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

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

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

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

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

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

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

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

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

I tried exe file, it works ok for me.
What is wrong?
by Sergey Tkachenko
Sat Jul 28, 2007 12:48 pm
Forum: ScaleRichView
Topic: ScaleRichView Compile Error With BDS 2006 - C Builder
Replies: 3
Views: 17990

ScaleRichView trial is updated. Must be ok now.
by Sergey Tkachenko
Sat Jul 28, 2007 12:44 pm
Forum: ScaleRichView
Topic: ScaleRichView - shareware TRichView addon for WYSIWYG edit
Replies: 19
Views: 99217

Update 2007-Jul-28: ScaleRichView v1.2.7

This is mainly a bug-fix release. All known bugs are fixed.
New packages: for C++Builder 6 and 2007.

Not all new features are included in the help files yet, it will be fixed in the next update.
by Sergey Tkachenko
Fri Jul 27, 2007 7:02 am
Forum: Support
Topic: rvespAlt
Replies: 4
Views: 11810

Sorry, I missed "r" - it must be not vespAlt but rvespAlt.
by Sergey Tkachenko
Thu Jul 26, 2007 6:12 pm
Forum: Support
Topic: Load styles from ini witout deleting existing styles?
Replies: 1
Views: 8533

Load INI in another RVStyle, then copy styles:

Code: Select all

for i := 0 to RVStyle2.TextStyles.Count-1 do
  RVStyle1.TextStyles[i].Assign(RVStyle2.TextStyles[i]);