Search found 9411 matches

by Sergey Tkachenko
Tue Feb 19, 2008 10:49 am
Forum: Support
Topic: CSS - Font family
Replies: 6
Views: 13992

I received your file. I think the best solution is implementing this feature in absolute transparent way. I.e., when the user applies one of these fonts, the proper font family is used for saving CSS. This change will be uploaded in the next update, probably already today. Note: not only Webdings an...
by Sergey Tkachenko
Tue Feb 19, 2008 9:45 am
Forum: ScaleRichView
Topic: when are updates due to be released?
Replies: 6
Views: 22755

We are preparing files. If all will be ok, the update will be uploaded today.
by Sergey Tkachenko
Tue Feb 19, 2008 9:44 am
Forum: ScaleRichView
Topic: suggestion handling custom 'save as' in actions framework
Replies: 1
Views: 11770

Do you mean that the program will ask additional questions to the user before saving, and the user can cancel saving while answering? In this case, of cause, reading must report failure to the program, but displaying an error message with the list of possible reasons of error is wrong. Well, for com...
by Sergey Tkachenko
Tue Feb 19, 2008 9:08 am
Forum: Support
Topic: CSS - Font family
Replies: 6
Views: 13992

Please send them to me. I'll think about it.
by Sergey Tkachenko
Tue Feb 19, 2008 9:07 am
Forum: Support
Topic: Row cloning
Replies: 8
Views: 20470

Probably you copy to the row having different number of cells. Probably because of cell merging.
by Sergey Tkachenko
Tue Feb 19, 2008 9:06 am
Forum: Support
Topic: Different Header Page 2
Replies: 1
Views: 8656

The methods of implementing oheaders and footers are different depending on your needs.
Do you need a plain text headers or formatted headers? Do they have the same or different heights?
Overview is here: http://www.trichview.com/forums/viewtopic.php?t=327
by Sergey Tkachenko
Tue Feb 19, 2008 9:04 am
Forum: Support
Topic: soft hyphen in RTF
Replies: 1
Views: 15350

Soft hyphens are supported in Unicode text. Please send me a project reproducing this problem.
by Sergey Tkachenko
Tue Feb 19, 2008 9:02 am
Forum: Support
Topic: Insert Radiobutton on line with text
Replies: 1
Views: 8676

InsertControl inserts item in the position of caret. It must not be used for document generation, only for editing operations.
AddControl method is deprecated. Use AddControlEx. In any method having ParaNo parameter, you can pass -1 to add item to the same paragraph as the previously added item.
by Sergey Tkachenko
Tue Feb 19, 2008 8:59 am
Forum: Support
Topic: strnew replacement?
Replies: 9
Views: 25072

It cannot be replaced when working with TRichView tags.
Do not worry, it still works and will never be removed from Delphi, otherwise it will break a lot of existing code.
by Sergey Tkachenko
Mon Feb 18, 2008 7:00 am
Forum: Support
Topic: CSS - Font family
Replies: 6
Views: 13992

It's not supported yet.
Do you have an idea how it can be implemented (without adding new properties to text style)?
May be an event for TRVStyle where you can return font-family for the given font name?
by Sergey Tkachenko
Mon Feb 18, 2008 6:53 am
Forum: Examples, Demos
Topic: [Demo] Sending HTML email. Saving MIME-encoded files.
Replies: 40
Views: 3280429

You can use SaveHTMLToStream instead of SaveHTMLToStreamEx to save HTML without CSS.
And you can insert text in table with background picture (background picture can be assigned to the table itself or to table cell)
by Sergey Tkachenko
Sun Feb 17, 2008 7:43 pm
Forum: Support
Topic: Break not displayed
Replies: 3
Views: 12169

2) "Breaks" cannot be saved in RTF (MS Word uses special drawing object for similar things, but MS drawing objects are not supported by TRichView yet). TRichView saves "breaks" as two paragraphs, the first of them has border at the bottom side. When you open this RTF file in TRic...
by Sergey Tkachenko
Sun Feb 17, 2008 7:39 pm
Forum: Support
Topic: Break not displayed
Replies: 3
Views: 12169

1) If you insert table in TRichView, you must not free it yourself, it will be freed by TRichView. If you got an exception, the reason is in some another place. For example, what is jp? Where do you create it? You need to pass an unique graphic object to AddPictureEx. I am not sure how to create a n...
by Sergey Tkachenko
Sun Feb 17, 2008 7:28 pm
Forum: Support
Topic: Bullets centering
Replies: 2
Views: 15430

VAlign property is available for bullets, so it's possible to change it from baseline to middle, abs-middle, abs-top or abs-bottom. But this property was added to bullets later than adding AddBulletEx method, so you need to set it manually: RichView1->AddNL(TimeToStr(Now()) + " ", 2, 0); R...
by Sergey Tkachenko
Sun Feb 17, 2008 6:35 pm
Forum: Examples, Demos
Topic: [Demo] Sending HTML email. Saving MIME-encoded files.
Replies: 40
Views: 3280429

May be yahoo web interface does not support background images in e-mails?