Search found 9411 matches

by Sergey Tkachenko
Thu Oct 11, 2007 7:02 pm
Forum: Support
Topic: Internal Hyperlink in RTF documents
Replies: 9
Views: 31182

You do not need to worry about RTF fields, TRichView saves all this stuff automatically. As for checkpoints, see RichView Items' "Checkpoints" Overview in the help file. In editor, they are inserted with SetCurrentCheckpointInfo. The latest version also has an alternative method InsertChec...
by Sergey Tkachenko
Thu Oct 11, 2007 2:42 pm
Forum: Support
Topic: delete a style
Replies: 1
Views: 8293

There is a mistake in the help file, this method was removed already (it was in very old version). New versions of Delphi/Builder have this method in collection by default. TextStyles->Delete(i) is the same as TextStyles->Items[i]->Free(); (and almost the same as delete TextStyles->Items[i]; )
by Sergey Tkachenko
Thu Oct 11, 2007 8:33 am
Forum: Support
Topic: index error and infinite loop
Replies: 5
Views: 12107

You cannot start live spelling when the TRichViewEdit is not formatted. You cannot start it in TDBRichViewEdit.OnLoadDocument. This event occurs after the document is loaded, but before it is formatted. Solutions: 1) If RTFMemoPad.LiveSpellingMode=rvlspOnChange, live spelling will start after making...
by Sergey Tkachenko
Thu Oct 11, 2007 8:21 am
Forum: Support
Topic: Error on termination of an application using TRichView
Replies: 8
Views: 24412

Yes, I agree, it is highly possible that this error occurs because of code in some event. Error occurs when accessing some component on form that is already destroyed.
by Sergey Tkachenko
Thu Oct 11, 2007 8:18 am
Forum: Support
Topic: Undo Problem
Replies: 5
Views: 13910

You cannot use this event to make changes in document. Any error is possible if you do it.
Please redesign your application to make changes in another place.
by Sergey Tkachenko
Wed Oct 10, 2007 11:30 am
Forum: Support
Topic: Error on termination of an application using TRichView
Replies: 8
Views: 24412

Place a breakpoint in TRichView.Destroy. Calculate how many times it is called (may be it is called twice for the same TRichView)
by Sergey Tkachenko
Wed Oct 10, 2007 7:26 am
Forum: Support
Topic: Undo Problem
Replies: 5
Views: 13910

When caret is inside table, you can call code to split this table in two parts and insert page break between: http://www.trichview.com/forums/viewtopic.php?t=586
Otherwise, this command must be disabled when the caret is inside table cell (when RichViewEdit.InplaceEditor<>nil)
by Sergey Tkachenko
Wed Oct 10, 2007 7:24 am
Forum: Support
Topic: Error on termination of an application using TRichView
Replies: 8
Views: 24412

When an item (especially a component) has been removed without formatting TRichView, AV usually occurs
It should not happen.
by Sergey Tkachenko
Wed Oct 10, 2007 7:22 am
Forum: Support
Topic: index error and infinite loop
Replies: 5
Views: 12107

Try to upgrade to the latest TRichView version
by Sergey Tkachenko
Tue Oct 09, 2007 4:59 pm
Forum: Examples, Demos
Topic: [Demo] DB Editor
Replies: 11
Views: 105279

[Demo] DB Editor

http://www.trichview.com/support/files/dbeditdemo.zip This is an analog of the demo Demos\Delphi\Editors\Editor 2\, but with TDBRichViewEdit instead of TRichViewEdit. This demo implements basic commands for changing text and paragraph attributes (without RichViewActions) This ZIP file includes sever...
by Sergey Tkachenko
Tue Oct 09, 2007 2:07 pm
Forum: Support
Topic: Offer: License for translation (German, Spanish, Portuguese)
Replies: 4
Views: 12829

Offer: License for translation (German, Spanish, Portuguese)

For the upcoming release of new version of TRichView and for adding ScaleRichView to the site, we need to update German, Spanish and Portuguese(BR) versions of TRichView site. It will not be too large amount of work, I do not think the text would exceed one page (may be two pages). Native speakers a...
by Sergey Tkachenko
Tue Oct 09, 2007 12:56 pm
Forum: Support
Topic: Undo Problem
Replies: 5
Views: 13910

You should not be able to insert page break in table cells.
by Sergey Tkachenko
Tue Oct 09, 2007 12:54 pm
Forum: Support
Topic: TRichViewEdit: Move focus centered to a certain Item
Replies: 3
Views: 13987

You can move caret to the end of this item. If this item is not in table cell, and you know its index (ItemNo), the code is: rve.SetSelectionBoudns(ItemNo, rve.GetOffsAfterItem(ItemNo), ItemNo, rve.GetOffsAfterItem(ItemNo)); The editor will be scrolled to show the caret, but not necessary in the mid...
by Sergey Tkachenko
Tue Oct 09, 2007 12:52 pm
Forum: Support
Topic: Internal Hyperlink in RTF documents
Replies: 9
Views: 31182

I recommend to upgrade to the newer version.
I can open access to the protected section of this form for you. Send me a private message with e-mail address you used when ordered TRichView.
by Sergey Tkachenko
Tue Oct 09, 2007 12:50 pm
Forum: Support
Topic: Error on termination of an application using TRichView
Replies: 8
Views: 24412

A guess, may be stupid: may you create RichViews dynamically passing some form as an Owner parameter. When this form is freed, it frees all its controls, including these RichViews. When, in some other place, you free all RichViews in your array, and the error occurs.