Search found 9429 matches

by Sergey Tkachenko
Mon Nov 06, 2006 9:46 pm
Forum: Support
Topic: Default for Table CELL spacing
Replies: 1
Views: 8558

Do you use RichViewActions? TrvActionInsertTable has many properies of TRVTableItemInfo, and they are assigned to the inserted table.

PS: for RTF-like tables, set:
CellHSpacing=CellVSpacing=-1
BorderHSpacing=BorderVSpacing=0
BorderWidth=0
CellBorderWidth=1
by Sergey Tkachenko
Mon Nov 06, 2006 9:43 pm
Forum: Support
Topic: Removing Hyperlinks
Replies: 4
Views: 13883

Do you mean converting them to plain text?
How did you add them?
by Sergey Tkachenko
Mon Nov 06, 2006 9:42 pm
Forum: Examples, Demos
Topic: [Demo] Sending HTML email. Saving MIME-encoded files.
Replies: 40
Views: 3301480

Yes, and I cannot see the attachment icon. I use Outlook Express 6.00.2800.1123
by Sergey Tkachenko
Mon Nov 06, 2006 4:11 pm
Forum: Support
Topic: Problem in Table
Replies: 4
Views: 13857

You use very old version of TRichView, please upgrade. The problem with bold and multicell selection is not actually TRichViewEdit problem, but a problem of RichViewActions (font buttons did not update their state for multicell selection, they were always unchecked, so clicking them always applied f...
by Sergey Tkachenko
Mon Nov 06, 2006 4:04 pm
Forum: Support
Topic: RTF Question
Replies: 4
Views: 14230

You encrypt RTF file in base64, and you can see base64-encoded text in the output. To view the original document, you need to decode stream (MimeDecodeStream) In your example, base64-encoded document is passed to LoadRVFFromStream. It's wrong, but in your case LoadRVFFromStream loads it as a plain t...
by Sergey Tkachenko
Mon Nov 06, 2006 3:56 pm
Forum: Support
Topic: Disabling of tabulation
Replies: 1
Views: 8421

Without this option set, TRichViewEdit still uses tab to navigate between table cells, but pressing Tab do not insert the character. When not in table, it moves input focus to another component.
by Sergey Tkachenko
Mon Nov 06, 2006 7:47 am
Forum: Support
Topic: Combining Two Different RVF Documents Into A Third
Replies: 2
Views: 9929

Assuming that documents are stored in Stream1 and Stream2: rv.Clear; rv.DeleteUnusedStyles(True, True, True); rv.InsertRVFFromStream(Stream1, rv.ItemCount); rv.InsertRVFFromStream(Stream2, rv.ItemCount); rv.Format; Unlike RVF loading methods, RVF inserttion methods do not replace the collections of ...
by Sergey Tkachenko
Sun Nov 05, 2006 10:18 pm
Forum: Support
Topic: Autohide Scrollbars
Replies: 5
Views: 15805

Answered in private message
by Sergey Tkachenko
Sun Nov 05, 2006 10:13 pm
Forum: Support
Topic: tabs lists
Replies: 1
Views: 8807

Each paragraph may have its own list of tab positions.
For the current paragraph (containing the caret), it is
RVStyle1.ParaStyles[RichViewEdit1.CurParaStyleNo].Tabs
by Sergey Tkachenko
Sun Nov 05, 2006 2:59 pm
Forum: Support
Topic: CellBorderColor change after save (rtf) ...
Replies: 3
Views: 12697

The border colors for table.Cells[r,c] are defined by the following properties: 1) table.Cells[r,c].BorderColor, table.Cells[r,c].BorderLightColor. By default, these properties are equal to clNone, meaning: use the default cell border colors, defined in (2) 2) table.CellBorderColor, table.CellBorder...
by Sergey Tkachenko
Sun Nov 05, 2006 6:51 am
Forum: Support
Topic: Autohide Scrollbars
Replies: 5
Views: 15805

Planned, but this feature has low priority.
It will not be included in the next version.
by Sergey Tkachenko
Sat Nov 04, 2006 10:22 pm
Forum: Support
Topic: Autohide Scrollbars
Replies: 5
Views: 15805

This feature is not supported yet.
The only possible solution is using external scrollbars (changing them on events) and hide them when necessary
by Sergey Tkachenko
Sat Nov 04, 2006 9:41 am
Forum: Support
Topic: CellBorderColor change after save (rtf) ...
Replies: 3
Views: 12697

Border colors of individual cells are assigned.
by Sergey Tkachenko
Sat Nov 04, 2006 9:39 am
Forum: Support
Topic: Printing isn't correct on every printers
Replies: 61
Views: 157533

You can use this new feature. After making the changes described above, the new RB wrapper can be used with any (relatively new) TRichView version.
But at first I recommend to change TPPRICHVIEWREFCANVASPPI constant (from ppRichView.pas) from 1440 to larger value, for example 7200.
by Sergey Tkachenko
Sat Nov 04, 2006 9:27 am
Forum: Examples, Demos
Topic: [Demo] Sending HTML email. Saving MIME-encoded files.
Replies: 40
Views: 3301480

How to send this e-mail?

How to send TRichView document as formatted e-mail - 2 This example uses Indy components: TIdSMTP and TIdMessage. The function TForm1.GetEMail is the same as above. Sending (assuming that SMTP server requires authorization): IdMessage1.Clear; IdMessage1.From.Address := ...; IdMessage1.From.Name := ...