Search found 9391 matches

by Sergey Tkachenko
Thu Feb 14, 2008 1:23 pm
Forum: Support
Topic: Export Header/Footer to RTF
Replies: 24
Views: 69953

Please wait, it will be only after releasing the next major update
by Sergey Tkachenko
Thu Feb 14, 2008 1:20 pm
Forum: Support
Topic: How to protect paragraph against deletion?
Replies: 13
Views: 26729

Well, I added the remark about formatting in all topics about TRichView/TRichViewEdit methods working with selection (including SelectAll), but I forgot to do it in table topics.
I'll fix the help file in the next update.
by Sergey Tkachenko
Thu Feb 14, 2008 1:06 pm
Forum: Support
Topic: How to protect paragraph against deletion?
Replies: 13
Views: 26729

You cannot select or edit in unformatted documents.
So you cannot call EditCell and SelectAll until you call Format.
by Sergey Tkachenko
Wed Feb 13, 2008 6:45 pm
Forum: Support
Topic: Adding additional formatting when inserting RVF from stream
Replies: 3
Views: 12275

Yes, this method works, and since only editing operations are used, it will always produce valid documents.
The only problem - this method is slower than using non-editing methods.
by Sergey Tkachenko
Tue Feb 12, 2008 6:19 pm
Forum: Support
Topic: Implement "Track changes" feature
Replies: 3
Views: 12027

Sorry, this feature is not planned in near future. The simplest way to implement is using OnKeyDown, OnKeyPress, OnPaste to trap editing operations. For example, the user pressed Backspace. You use OnKeyDown to prevent the default action, but apply the special style to the character to the left inst...
by Sergey Tkachenko
Tue Feb 12, 2008 6:14 pm
Forum: Support
Topic: .net version of RV?
Replies: 8
Views: 20413

Still in unknown future
by Sergey Tkachenko
Tue Feb 12, 2008 6:14 pm
Forum: Support
Topic: Load RVF into table cells
Replies: 3
Views: 11565

Pass any TColor value and two nil s as additional parameters. But there is a problem: cells do not support merging style collections. That means that: 1) RVF file must have the same collection of styles as TRVStyle used by TRichView containing the table 2) RVFTextStylesReadMode and RVFParaStylesRead...
by Sergey Tkachenko
Tue Feb 12, 2008 6:07 pm
Forum: Support
Topic: How can i get the Column Size ?
Replies: 5
Views: 16782

Normally, width of cells are calculated basing on BestWidth properties of table cells. Consider assigning BestWidths properties from one table to another. There may be a problem with merged cells, or if cells in the same column have different BestWidths, though. Widths of columns are stored in Fmt.C...
by Sergey Tkachenko
Tue Feb 12, 2008 5:58 pm
Forum: Support
Topic: How to protect paragraph against deletion?
Replies: 13
Views: 26729

a) Using paragraph and/or text protection (Options property of paragraph style, Protection property of text style)
or
b) Using table.OnCellEditing event
by Sergey Tkachenko
Sat Feb 09, 2008 6:58 pm
Forum: ScaleRichView
Topic: more RVAction Hyperlink questions
Replies: 11
Views: 36267

I confirm this problem. Will be fixed.
by Sergey Tkachenko
Fri Feb 08, 2008 3:58 pm
Forum: Support
Topic: How to protect paragraph against deletion?
Replies: 13
Views: 26729

It's not possible to implement exactly what you want. You can include DeleteProtect without ModifyProtect, it's almost what you need, but... It does not allow the last character of item to be deleted, i.e. it does not allow to create empty item from it. May be protection allowing making empty items ...
by Sergey Tkachenko
Fri Feb 08, 2008 7:52 am
Forum: ScaleRichView
Topic: <CTRL-Z> falls off end of list and generates errors
Replies: 5
Views: 20980

We will try to upload it in this week
by Sergey Tkachenko
Thu Feb 07, 2008 6:39 pm
Forum: ScaleRichView
Topic: <CTRL-Z> falls off end of list and generates errors
Replies: 5
Views: 20980

Please wait for the next update, it must fix this problem
by Sergey Tkachenko
Thu Feb 07, 2008 6:35 pm
Forum: Support
Topic: How to protect paragraph against deletion?
Replies: 13
Views: 26729

rvprModifyProtect does not allow editing text, so probably you should remove it.
rvprDeleteProtect does not allow deleting item (at least one character must remain), so this is probably what you need.
Also consider using rvprParaStartProtect.
by Sergey Tkachenko
Thu Feb 07, 2008 2:53 pm
Forum: Support
Topic: Adding additional formatting when inserting RVF from stream
Replies: 3
Views: 12275

No, there is only way: loading in offscreen TRichView and modifying paragraph properties. It is quite simple. But you need to decide what to do with list markers that can be in the document. Or what if it is started from table or break (they cannot be markered)