Search found 9411 matches

by Sergey Tkachenko
Fri Nov 03, 2006 1:43 pm
Forum: Support
Topic: Items and Sub Items in RichView!
Replies: 7
Views: 21511

You can use string tags and mark phrases using unuqie id (user-defined or auto-generated).
For example,
text: 'The ', tag 'BDS',
text 'Borland', tag 'BDS|Borland',
' Developer Studio IDE provides', tag 'BDS'.
Then, analysing tags of adjacent items, you can restore the hierarchy.
by Sergey Tkachenko
Thu Nov 02, 2006 2:17 pm
Forum: Support
Topic: About TRichView 1.9.24 trial
Replies: 2
Views: 9368

Updated: RichViewXML, RvHmlImport
by Sergey Tkachenko
Thu Nov 02, 2006 11:41 am
Forum: Support
Topic: rvhtmlimport bug when importing richview exported messages
Replies: 1
Views: 9885

Fixed version is uploaded
by Sergey Tkachenko
Thu Nov 02, 2006 8:09 am
Forum: Support
Topic: Cursor and Font in table setting...
Replies: 2
Views: 11098

for r := 0 to table.RowCount-1 do for c := 0 to table.ColCount-1 do if table.Cells[r,c]<>nil then begin table.Cells[r,c].Clear; table.Cells[r,c].AddNLATag('', RichViewEdit.CurTextStyleNo, RichViewEdit.CurParaStyleNo, 0); end; if RichViewEdit.InsertItem('', table) then table.EditCell(0,0); You shoul...
by Sergey Tkachenko
Wed Nov 01, 2006 11:13 pm
Forum: Support
Topic: InfoPath
Replies: 1
Views: 8263

Sorry, I do not understand your question
by Sergey Tkachenko
Wed Nov 01, 2006 11:10 pm
Forum: Support
Topic: Losing link when exporting to HTML
Replies: 5
Views: 17387

This assignment can be made in design time, in Object Inspector
by Sergey Tkachenko
Wed Nov 01, 2006 11:03 pm
Forum: Examples, Demos
Topic: [Demo] Radio Groups in TRichView
Replies: 0
Views: 23353

[Demo] Radio Groups in TRichView

This demo shows how to implement radio groups in TRichView.

http://www.trichview.com/support/files/radiogroups.zip

Captions and items are Unicode text (WideString)

Image

Updates:
2011-Oct-1: for compatibility with TRichView 13.4
by Sergey Tkachenko
Wed Nov 01, 2006 11:01 pm
Forum: Support
Topic: TRichview and Dotnet
Replies: 3
Views: 14652

Sorry, no. The answer is absolutely the same.
by Sergey Tkachenko
Wed Nov 01, 2006 10:59 pm
Forum: Support
Topic: Losing link when exporting to HTML
Replies: 5
Views: 17387

Did you assign it to RichViewEdit1.OnWriteHyperLink? :)
by Sergey Tkachenko
Wed Nov 01, 2006 2:55 pm
Forum: Support
Topic: Problem in Table
Replies: 4
Views: 13812

Do you use RichViewActions?

If yes, this problem must be fixed in new version of RichViewActions.
by Sergey Tkachenko
Wed Nov 01, 2006 2:51 pm
Forum: Support
Topic: Losing link when exporting to HTML
Replies: 5
Views: 17387

Process OnWriteHyperlink event. Default code for this event, if link targets are stored in tags, is: procedure TForm3.RichViewEdit1WriteHyperlink(Sender: TCustomRichView; id: Integer; RVData: TCustomRVData; ItemNo: Integer; SaveFormat: TRVSaveFormat; var Target, Extras: String); begin Target := PCha...
by Sergey Tkachenko
Wed Nov 01, 2006 11:28 am
Forum: Support
Topic: registerd version download?
Replies: 1
Views: 9428

Usually in the same day or in the next day. Registration e-mail may be filtered out as a spam. If you already registered and did not receive e-mail, and if you have some antispam protection which moves "bad" e-mail to some spam folder, please check this folder. May be the e-mail is there. ...
by Sergey Tkachenko
Wed Nov 01, 2006 10:05 am
Forum: Support
Topic: About TRichView 1.9.24 trial
Replies: 2
Views: 9368

Not all old packages were removed from richviewactions.zip
Indy support was broken.
Fixed.

By the way, to avoid a package mess, I recommend to delete all old RichViewActions files before installing new version.
by Sergey Tkachenko
Wed Nov 01, 2006 7:10 am
Forum: Support
Topic: RTF Code Optimization
Replies: 15
Views: 38339

1. Not tested, but I think there must be no bad effects, because after adding default colors, TRichView adds colors that are necessary for the given document (if they are not included in previously added colors). The main reason why default color table is added - some editors use the first colors of...
by Sergey Tkachenko
Tue Oct 31, 2006 10:20 pm
Forum: Support
Topic: Problems with borders
Replies: 1
Views: 9045

This is a paragraph border, not a text border. It really depends on the control width. Left and right paragraph borders are counted from margins. Some properties may affect to the distance from the right side (MinTextWidth, MaxTextWidth, rvoClientTexWidth in Options). See the help file, "Scroll...