Search found 9411 matches

by Sergey Tkachenko
Sat Feb 16, 2008 12:40 pm
Forum: Support
Topic: Export Header/Footer to RTF
Replies: 24
Views: 70210

I'll implement it as soon as it will be possible after releasing the next update. This update is almost ready, we just need to finishing web site update translation to several languages.
This update must be stable, so I do not plan to make serious changes in code before releasing it, sorry.
by Sergey Tkachenko
Sat Feb 16, 2008 12:38 pm
Forum: Support
Topic: Row cloning
Replies: 8
Views: 20472

Table has undocumented methods SaveRowsToStream and LoadFromStreamEx. You can use them to copy rows: var Stream: TMemoryStream; Row: Integer; begin Row := 0; Stream := TMemoryStream.Create; table.SaveRowsToStream(Stream, Row, 1); Stream.Position := 0; table.InsertRows(Row+1, 1, 0, False); table.Load...
by Sergey Tkachenko
Sat Feb 16, 2008 12:22 pm
Forum: Examples, Demos
Topic: [Demo] Sending HTML email. Saving MIME-encoded files.
Replies: 40
Views: 3281861

Please send me a project reproducing the problem. I'll try to see what's wrong.
by Sergey Tkachenko
Thu Feb 14, 2008 1:44 pm
Forum: Support
Topic: How to protect paragraph against deletion?
Replies: 13
Views: 26871

Answered by e-mail
by Sergey Tkachenko
Thu Feb 14, 2008 1:24 pm
Forum: Support
Topic: Row cloning
Replies: 8
Views: 20472

Do you want to add a new row in the same table? After the source row or to the end? Should it be an editing operation (undoable) or not?
by Sergey Tkachenko
Thu Feb 14, 2008 1:23 pm
Forum: Support
Topic: Export Header/Footer to RTF
Replies: 24
Views: 70210

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

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

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

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

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

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

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

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

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

I confirm this problem. Will be fixed.