Search found 9391 matches

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

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 i := 0...
by Sergey Tkachenko
Thu Jul 26, 2007 6:01 pm
Forum: Support
Topic: rvespAlt
Replies: 4
Views: 11811

...
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: 22713

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

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 crea...
by Sergey Tkachenko
Wed Jul 25, 2007 12:08 pm
Forum: Support
Topic: Text floating around picture
Replies: 5
Views: 14355

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.
by Sergey Tkachenko
Wed Jul 25, 2007 12:06 pm
Forum: Support
Topic: InsertStringTag with RC
Replies: 3
Views: 12913

InsertText, but it inserts text with empty (zero) tags.
by Sergey Tkachenko
Wed Jul 25, 2007 12:05 pm
Forum: Support
Topic: can't install RichViewActionsD5.dpk
Replies: 8
Views: 22713

What versions of TRichView and RichViewActions do you have?
by Sergey Tkachenko
Tue Jul 24, 2007 6:15 pm
Forum: ScaleRichView
Topic: TCheckBoxse not showing
Replies: 7
Views: 32661

Inserted controls are not supported yet in ScaleRichView.
Sorry for not mentioning this in the forum announce.

Ilya is working on this problem. We hope that we will make at least simple controls (like checkboxes) working
by Sergey Tkachenko
Tue Jul 24, 2007 4:44 pm
Forum: ScaleRichView
Topic: Matching margins/pages to a pdf
Replies: 12
Views: 43067

by Sergey Tkachenko
Tue Jul 24, 2007 4:43 pm
Forum: Support
Topic: Text floating around picture
Replies: 5
Views: 14355

Yes, it is planned, but it will not be included in the next major update.
I am afraid to promise something about date when this feature will be implemented, because I do not want to give you a false information.
by Sergey Tkachenko
Tue Jul 24, 2007 4:13 pm
Forum: ScaleRichView
Topic: Addict Spell Check problems
Replies: 12
Views: 53621

I just placed RVAddictSpell31 : TRVAddictSpell3 on the form and added a button with the code:
RVAddictSpell31.CheckRichViewEdit(SRichViewEdit1.RichViewEdit, ctAll);
It works as expected.
by Sergey Tkachenko
Tue Jul 24, 2007 3:52 pm
Forum: ScaleRichView
Topic: Matching margins/pages to a pdf
Replies: 12
Views: 43067

Can you send example of RVF and PDF showing this problem to ilya at trichview dot com ?
by Sergey Tkachenko
Tue Jul 24, 2007 3:50 pm
Forum: ScaleRichView
Topic: List index out of bounds problem
Replies: 3
Views: 18503

Please send bug reports directly to ilya at trichview dot com
In this way they will be answered faster.
by Sergey Tkachenko
Tue Jul 24, 2007 3:44 pm
Forum: ScaleRichView
Topic: Moved the topic "ScaleRichView - shareware..."
Replies: 3
Views: 19090

There should be no problems replacing TRichViewEdit to TSRichViewEdit. Just use TSRichViewEdit.RichViewEdit property to access internal TRichViewEdit. All operations on this TRichViewEdit will be reflected on TSRichViewEdit. As you can see, all RichViewActions (initially designed for TRichViewEdit) ...