Search found 9731 matches

by Sergey Tkachenko
Tue Dec 30, 2008 5:44 pm
Forum: Support
Topic: richedit to richviewedit
Replies: 8
Views: 25994

As for "mixed" mode. In this mode, RTF text was loaded as ANSI. So when you call Unicode version of GetWordAt, text is converted from ANSI to Unicode. For this conversion, a code page specified in SRichViewEdit.RichViewEdit.Style.DefCodePage is used. By default it is CP_ACP, i.e. the default system ...
by Sergey Tkachenko
Tue Dec 30, 2008 4:06 pm
Forum: Support
Topic: richedit to richviewedit
Replies: 8
Views: 25994

I tried ScaleRichView ActionTest demo in Delphi 2009, loaded arabic.rtf (you sent to me previously), and this code worked correctly.
But you must be sure that RTF text is loaded as Unicode text. Make sure that SRichViewEdit1.RTFReadProperties.UnicodeMode = rvruOnlyUnicode.
This value is set by ...
by Sergey Tkachenko
Tue Dec 30, 2008 3:53 pm
Forum: Support
Topic: richedit to richviewedit
Replies: 8
Views: 25994

Please send me arabic text as RVF file, I'll try to see what's wrong.
There must not be difference if the text is Arabic or English for this method.
by Sergey Tkachenko
Tue Dec 30, 2008 2:42 pm
Forum: Announcements
Topic: Parsers set v1.11.1 for several spell checkers
Replies: 0
Views: 34399

Parsers set v1.11.1 for several spell checkers

Parsers set v1.11.1 for several spell checkers

http://www.trichview.com/resources/spell/rvspell.zip

fix: in HunSpell, TRVHunSpell.Spell did not take an ignore-all list into account.
new: in HunSpell, TRVHunSpell.ResetIgnoreAndReplace clears an ignore-all and an autoreplace lists.
by Sergey Tkachenko
Tue Dec 30, 2008 2:23 pm
Forum: ScaleRichView
Topic: pagination problem
Replies: 7
Views: 54401

Linking TSRichViewEdit to external TRichViewEdit may cause this TRichViewEdit to display text incorrectly. But in TSRichViewEdit all must be ok.
A simple project reproducing the problem is preferable.
by Sergey Tkachenko
Tue Dec 30, 2008 2:20 pm
Forum: Support
Topic: Bugs
Replies: 2
Views: 9932

I cannot reproduce this error. I tried this code:

var ASearchStr, AReplaceStr: String;
i: Integer;
begin
SRichViewEdit1.RichViewEdit.Clear;
SRichViewEdit1.RichViewEdit.Format; // necessary before editing method
SRichViewEdit1.RichViewEdit.InsertRVFFromFileEd('d:\ExceptionTemplate2.rvf ...
by Sergey Tkachenko
Tue Dec 30, 2008 2:08 pm
Forum: Support
Topic: richedit to richviewedit
Replies: 8
Views: 25994

These method support Arabic and Unicode (GetWordAt returns String, so for Delphi 4-2007 Unicode text is converted to ANSI). Some versions of TRichView had problem with this method, but in version 11 it must be ok.

The code I gave to you was to TRichView/TRichViewEdit. For ScaleRichView, convert ...
by Sergey Tkachenko
Mon Dec 29, 2008 11:37 am
Forum: Support
Topic: richedit to richviewedit
Replies: 8
Views: 25994

If I understand correctly, you need a word (characters between spaces) below the mouse pointer.

procedure TForm1.RichViewEdit1MouseMove(Sender: TObject; Shift: TShiftState; X, Y: Integer);
var delim: String;
begin
delim := RichViewEdit1.Delimiters;
RichViewEdit1.Delimiters := ' '; // using only ...
by Sergey Tkachenko
Mon Dec 29, 2008 11:30 am
Forum: Support
Topic: Bugs
Replies: 2
Views: 9932

Please send me RVF document where it happens.
by Sergey Tkachenko
Fri Dec 26, 2008 5:11 pm
Forum: Support
Topic: problem with paste from Internet page
Replies: 11
Views: 23784

I cannot reproduce this problem when copying from www.trichview.com.
When I copy from IE7 to to RichViewEdit without assigned events, it attempts to load pictures from their original locations (such as "http://www.trichview.com/images/headers/news.gif"). Of course it fails because images need to be ...
by Sergey Tkachenko
Thu Dec 25, 2008 4:34 pm
Forum: Support
Topic: problem with paste from Internet page
Replies: 11
Views: 23784

1. What page (URL) do you copy from?
2. What browser do you use for copying?
3. Do you paste in HTML format using TrvHtmlImporter, or RTF (without using it)?
by Sergey Tkachenko
Wed Dec 24, 2008 3:37 pm
Forum: Support
Topic: problem with paste from Internet page
Replies: 11
Views: 23784

HTML files, from where you pasted
by Sergey Tkachenko
Tue Dec 23, 2008 5:02 pm
Forum: Support
Topic: animated gif issue
Replies: 4
Views: 15496

Sorry, I do not know why it does not work.
Including RVGifAnimate2007 in the project (providing that you use Delphi 2007 or 2009) and assigning AnimationMode must be enough.
Animation uses a simple timer, so I think there must be no problems with DLL.
Total Commander plugin for displaying RVF files ...
by Sergey Tkachenko
Tue Dec 23, 2008 4:39 pm
Forum: Support
Topic: A little bug
Replies: 1
Views: 10012

Confirmed, will be fixed.
by Sergey Tkachenko
Mon Dec 22, 2008 5:25 pm
Forum: Support
Topic: 2 richviewedit control
Replies: 3
Views: 13327

RichViewActions automatically work with the focused control. So when one of editors is focused (it has a blinking caret), all actions will work with it.

Some problems may occur when a different control (for example, button or combobox) is focused. In this case, without a special processing, you ...