Search found 9411 matches

by Sergey Tkachenko
Fri Nov 18, 2005 4:31 pm
Forum: Support
Topic: Goto first char
Replies: 2
Views: 12164

To the very first char: rve.SetSelectionBounds(0, rve.GetOffsBeforeItem(0), 0, rve.GetOffsBeforeItem(0)); To the first char of the current paragraph: i := rve.CurItemNo; while not rve.IsParaStart(i) do dec(i); rve.SetSelectionBounds(i, rve.GetOffsBeforeItem(i), 0, rve.GetOffsBeforeItem(i)); To the b...
by Sergey Tkachenko
Fri Nov 18, 2005 4:28 pm
Forum: Support
Topic: Question about update from 1.7 to 1.9.15
Replies: 1
Views: 11035

There were no changes in this field, as far as I remember.
What is this function? Can you post it here or send me a project showing the problem?
by Sergey Tkachenko
Thu Nov 17, 2005 8:28 pm
Forum: Support
Topic: RTF Import/Export and Non-ANSI Characters
Replies: 13
Views: 55658

I assume that you have the source code :) Open RVRTFProps.pas, find the line or (FontStyle.Charset=DEFAULT_CHARSET)) // <-- not very good solution and delete or (FontStyle.Charset=DEFAULT_CHARSET) Honestly, I do not remember why I added this condition, not I think that it does more harm than good.
by Sergey Tkachenko
Thu Nov 17, 2005 7:52 pm
Forum: Support
Topic: Alternate Text
Replies: 1
Views: 10032

In HTML, alt attribute is only for pictures (it is text ALTernative to the picture). But almost any visual element can have title attribute (popup hint).
See this topic: http://www.trichview.com/forums/viewtopic.php?t=355
(hint can be applied to any item in trichview, not only to the pictures)
by Sergey Tkachenko
Thu Nov 17, 2005 7:34 pm
Forum: Support
Topic: Table border printing problem
Replies: 14
Views: 43443

Sorry, but how can I solve this problem without knowing why it happens? I am asking questions not because I am trying to delay the solution, but because I want to know why it goes wrong. I asked the last question because I want to know if the problem happens because of the border overlapping (may be...
by Sergey Tkachenko
Thu Nov 17, 2005 7:26 pm
Forum: Support
Topic: Export Header/Footer to RTF
Replies: 24
Views: 70197

Thank you for ordering Site License :)
Please remind me when I upload the next update (supporting page breaks in table cells), I'll immediately start working on this problem.
by Sergey Tkachenko
Thu Nov 17, 2005 7:08 pm
Forum: Support
Topic: Saving Page Background
Replies: 4
Views: 19329

It's easy. The first RVF line is always -8 1 3 If background is present, it's the second line. The example of this line is -7 2 0 0 2 0 3 -2147483643 where the first number (-7) means that this is a record about background. The last two numbers are ord(BackgroundStyle) (3) and background color (-214...
by Sergey Tkachenko
Thu Nov 17, 2005 7:02 pm
Forum: Support
Topic: CSS in RvHtmlImporter
Replies: 11
Views: 35216

This is a limitation of TrvHtmlImporter
by Sergey Tkachenko
Thu Nov 17, 2005 7:01 pm
Forum: Support
Topic: In printings rveTable-lines too thick (dominant).
Replies: 2
Views: 12123

First, is this problems is a result of borders overlapping or not? Are line widths the same if cell spacings are positive values (and borders do not overlap)
by Sergey Tkachenko
Thu Nov 17, 2005 6:58 pm
Forum: Support
Topic: FastReport 3 Wrapper ?
Replies: 6
Views: 18380

It will be the next major work when I complete page breaks inside table cells. No news yet.
by Sergey Tkachenko
Thu Nov 17, 2005 6:57 pm
Forum: Support
Topic: Using TRichview in delphi web ISAPI
Replies: 2
Views: 12026

What's exactly the problems with bullets&numbering?
by Sergey Tkachenko
Thu Nov 17, 2005 6:57 pm
Forum: Support
Topic: Unicode searching?
Replies: 1
Views: 11025

Not yet. Will be added in one of next updates
by Sergey Tkachenko
Wed Nov 16, 2005 8:32 pm
Forum: Support
Topic: Header/Footer on first page
Replies: 1
Views: 11608

Sorry, it's not possible using these methods.
To make different headers/footers on different pages, you need to draw them yourself using TRVReportHelper.
More info:
http://www.trichview.com/forums/viewtopic.php?t=327
by Sergey Tkachenko
Wed Nov 16, 2005 8:16 pm
Forum: Support
Topic: Error with a RTF
Replies: 4
Views: 13891

Which program generated this RTF? Is it possible to modify it? In order to fix this RTF, search for "\pard\ql\cell" and remove "\pard" from it. Explanation: \pard resets all paragraph properties to defaults. Including a flag "this paragraph is in table". \ql is not impo...
by Sergey Tkachenko
Wed Nov 16, 2005 7:46 pm
Forum: Support
Topic: Processing current select text...is it possible?
Replies: 2
Views: 14699

memo1.SelText := UpperCase(memo1.SelText) in TRichViewEdit will be: rv1.InsertText(UpperCase(memo1.GetSelText)); But if the selection contain pictures, tables, or multiple fonts, it will be lost. To avoid it, more complex processing it required - item by item. Some text may be Unicode, it must be ta...