Search found 9731 matches

by Sergey Tkachenko
Wed Feb 20, 2008 6:15 am
Forum: Support
Topic: strnew replacement?
Replies: 9
Views: 35548

NewStr() is never used in RichView code. But some functions have parameters named NewStr.
And yes, Pieter is right, StrNew is not deprecated. There is no reason why function allocating a new string on the heap should be deprecated.
by Sergey Tkachenko
Tue Feb 19, 2008 5:26 pm
Forum: ScaleRichView
Topic: when are updates due to be released?
Replies: 6
Views: 32070

Ilya is testing demo projects agains the new version. Unfortunately, it cannot be completed today. Tomorrow.
by Sergey Tkachenko
Tue Feb 19, 2008 5:24 pm
Forum: ScaleRichView
Topic: more RVAction Hyperlink questions
Replies: 11
Views: 56123

Hmm... Make sure that rvActionInsertHyperlink.SpaceFiller = ' '. In older version it was '%20' by default, but now it is changed.
rvActionInsertHyperlink does nothing with punctuation, but it removes #13 and #10 characters.
by Sergey Tkachenko
Tue Feb 19, 2008 4:40 pm
Forum: Support
Topic: copy and paste to MS Word
Replies: 1
Views: 9116

Yes, if the font has ANSI_CHARSET, its language is saved as English. It is wrong, in the next update it will be fixed (no language code will be saved in RTF for fonts with ANSI_CHARSET).

Alternatively, you can define text language in TRichViewEdit. The source code must be recompiled with ...
by Sergey Tkachenko
Tue Feb 19, 2008 1:00 pm
Forum: Support
Topic: [Ann] Total Commander pluging for viewing RVF files v1.1
Replies: 0
Views: 22512

[Ann] Total Commander pluging for viewing RVF files v1.1

I updated the Total Commander plugin for viewing RVF files.
http://www.trichview.com/resources/total-commander/rvlister.zip

The plugin is free with source code (but requires TRichView for recompiling).

New in this update:
- support for Gif animation in RVF files;
- hang up fix;
- recompiled ...
by Sergey Tkachenko
Tue Feb 19, 2008 10:49 am
Forum: Support
Topic: CSS - Font family
Replies: 6
Views: 16398

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 ...
by Sergey Tkachenko
Tue Feb 19, 2008 9:45 am
Forum: ScaleRichView
Topic: when are updates due to be released?
Replies: 6
Views: 32070

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

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 ...
by Sergey Tkachenko
Tue Feb 19, 2008 9:08 am
Forum: Support
Topic: CSS - Font family
Replies: 6
Views: 16398

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

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

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

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

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

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

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?