Search found 9730 matches

by Sergey Tkachenko
Mon Jul 30, 2007 11:11 am
Forum: Support
Topic: can't install RichViewActionsD5.dpk
Replies: 8
Views: 27764

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

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 ...
by Sergey Tkachenko
Mon Jul 30, 2007 7:50 am
Forum: ScaleRichView
Topic: ScaleRichView Compile Error With BDS 2006 - C Builder
Replies: 3
Views: 23195

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

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

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

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

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

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

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

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]);
by Sergey Tkachenko
Thu Jul 26, 2007 6:09 pm
Forum: Support
Topic: InsertStringTag with RC
Replies: 3
Views: 15598

No, sorry. Because it's rarely needed.

You can use this procedure (assuming that rvoTagsArePChars in rve.Options):
procedure InsertTextTag(rve: TCustomRichViewEdit; const Text, Tag: String);
var SL: TStringList;
i: Integer;
begin
SL := TStringList.Create;
SL.Text := Text;
rve.BeginUpdate;
for ...
by Sergey Tkachenko
Thu Jul 26, 2007 6:01 pm
Forum: Support
Topic: rvespAlt
Replies: 4
Views: 13436

...
rv.AddHotPictureTag(...);
rv.SetItemExtraStrProperty(rv.ItemCount-1, vespAlt, 'Image');
...
by Sergey Tkachenko
Thu Jul 26, 2007 1:25 pm
Forum: Support
Topic: can't install RichViewActionsD5.dpk
Replies: 8
Views: 27764

I think you need older version of RichViewActions for TRichView 1.9.21, but unfortunately I do not have it.
Please tell me what exactly errors the compiler generates while compiling RichViewActions. May be I will be able to suggest how to modify RichViewActions to compile them with TRichView 1.9.21 ...
by Sergey Tkachenko
Thu Jul 26, 2007 1:20 pm
Forum: Support
Topic: How to create a TRichView at runtime
Replies: 1
Views: 9927

In the current version, TRichViewEdit must have a parent:

TRichViewEdit *rve = new TRichViewEdit(NULL);
rve->Visible = false;
rve->Parent = Form1;
TRVStyle* style = new TRVStyle(NULL);
rve->Style = style;
rve->Format();
rve->InsertText("test");

Besides, initial values of TRichViewEdit created ...
by Sergey Tkachenko
Wed Jul 25, 2007 12:08 pm
Forum: Support
Topic: Text floating around picture
Replies: 5
Views: 17588

Not, it was not started yet.
Currently I need to release a next major update, and it must be bug free, so adding new features is currently frozen, until the release.