Search found 9390 matches

by Sergey Tkachenko
Fri Apr 18, 2008 6:00 pm
Forum: Support
Topic: [BUG?] windows 2000: formatted text flows into one another
Replies: 9
Views: 20873

The file you send to me has no tabulators, it has only spaces. On XP it looks normal. I will be able to access a computer with Win2000 only next Monday. Can you check if the font "Arial Unicode MS" is installed on systems where this problem occurs? I have a guess that this font is substitu...
by Sergey Tkachenko
Thu Apr 17, 2008 4:06 pm
Forum: ScaleRichView
Topic: strange problems
Replies: 3
Views: 18279

The most probably, the problem with images exists already in intermediate RTF code generated by the converter. Or (less probably) the problem occurs when TRichView loads this RTF code.
To make sure, I need a sample file.
by Sergey Tkachenko
Thu Apr 17, 2008 3:59 pm
Forum: ScaleRichView
Topic: is Rvstyle need and Page format problem
Replies: 4
Views: 20158

As for (1), you can still use RVStyle object accessible as SRichViewEdit1.RichViewEdit.Style

As for the rest of question, Ilya will answer later.
I am not sure that I understand the problem (2). Can you create a screenshot and send to [email protected] ?
by Sergey Tkachenko
Thu Apr 17, 2008 3:37 pm
Forum: Support
Topic: [BUG?] windows 2000: formatted text flows into one another
Replies: 9
Views: 20873

Better send to [email protected]
(to make sure that my copy is identical)
by Sergey Tkachenko
Thu Apr 17, 2008 12:56 pm
Forum: Support
Topic: OnCheckpointVisible in TRichViewEdit?
Replies: 3
Views: 10328

Actually, it's not very difficult. It was not implemented only because in TRichView checkpoint may appear only as a result of scrolling or resizing (and resizing usually causes scrolling), but in TRichViewEdit it may also appear as a result of editing. So the code used in TRichView will not always w...
by Sergey Tkachenko
Thu Apr 17, 2008 12:49 pm
Forum: Support
Topic: [BUG?] windows 2000: formatted text flows into one another
Replies: 9
Views: 20873

Do you use RichViewXML to store XML data?
Please send me this XML doc.
by Sergey Tkachenko
Thu Apr 17, 2008 8:32 am
Forum: Support
Topic: OnCheckpointVisible in TRichViewEdit?
Replies: 3
Views: 10328

No, not in near future.
You can try to implement it yourself - in OnVScrolled and OnChange events, check items starting from FirstItemVisible, using GetItemCheckpoint.
by Sergey Tkachenko
Thu Apr 17, 2008 8:30 am
Forum: Support
Topic: Export Header/Footer to RTF
Replies: 24
Views: 69937

Not yet, but this will be the next feature to implement.
by Sergey Tkachenko
Thu Apr 17, 2008 8:29 am
Forum: Support
Topic: [BUG?] windows 2000: formatted text flows into one another
Replies: 9
Views: 20873

How the text was created initially? Loaded from file?
by Sergey Tkachenko
Wed Apr 16, 2008 7:16 am
Forum: Support
Topic: loading a Unicode file line by line
Replies: 21
Views: 48864

In your code, I do not understand the statement

Code: Select all

if i = srvEditor.RichViewEdit.ItemCount - 1 then ...
Why do you need to process the last item specially? This item is not necessary starts a paragraph.
by Sergey Tkachenko
Wed Apr 16, 2008 7:15 am
Forum: Support
Topic: loading a Unicode file line by line
Replies: 21
Views: 48864

Sorry, what do you think IsFromNewLine means? Probably, you misunderstand it, and so there is a confusion. Actually, it means "this item starts a paragraph" (or a line inside paragraph, added with Shift+Enter). In your example, there are 2 paragraphs, so there are must be only 2 items havi...
by Sergey Tkachenko
Wed Apr 16, 2008 4:55 am
Forum: Support
Topic: Arrow/TAB not working in tables
Replies: 5
Views: 16011

I created an ActiveX, and I can confirm the problem. Unfortunately, it's difficult to debug ActiveX, so it may take some time.
by Sergey Tkachenko
Wed Apr 16, 2008 4:53 am
Forum: Support
Topic: loading a Unicode file line by line
Replies: 21
Views: 48864

Sorry, I do not understand what's wrong. In your example: Item[0] = 'LETHAL' IsFromNewLine = True , because the document starts from a new line, IsFromNewLine(0) is always true. Item[1] = character IsFromNewLine = False , because the character contunues the same paragraph as the previous item. Item[...
by Sergey Tkachenko
Tue Apr 15, 2008 3:53 pm
Forum: Support
Topic: Center table.col
Replies: 5
Views: 17069

Sorry, do you need to implement this as an editing operation (that can be undone by user) or not?
For an editing operation, your code is correct: select the proper cells and call ApplyParaStyleConversion.
by Sergey Tkachenko
Tue Apr 15, 2008 3:40 pm
Forum: Support
Topic: Pasting copied webcontent containing images and text doesn't
Replies: 3
Views: 9757

1) About pasting from web pages. Which browser do you use, and which web page do you copy? 2) About copying to email composers.That means that Outlook Express ignores images in pasted RTF content, and Thunderbird email composer does not paste RTF at all (pastes plain text). There is nothing I can do...