Search found 9405 matches

by Sergey Tkachenko
Thu Nov 17, 2005 7:08 pm
Forum: Support
Topic: Saving Page Background
Replies: 4
Views: 19317

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

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

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

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

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

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

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

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

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...
by Sergey Tkachenko
Wed Nov 16, 2005 7:34 pm
Forum: Support
Topic: add rows and columns in table without reformatting
Replies: 1
Views: 10888

It's not necessary to reformat the whole document, but the table must be reformatted. It can be done by BeginItemModify & EndItemModify methods. Copied from Demos\Delphi\Editors\Editor 1\ var item: TCustomRVItemInfo; table: TRVTableItemInfo; Data: Integer; rve: TCustomRichViewEdit; ItemNo: Integ...
by Sergey Tkachenko
Wed Nov 16, 2005 7:29 pm
Forum: Support
Topic: Picture hint in HTML
Replies: 1
Views: 12857

It's not necessary to use OnWriteHyperlink for this. There is a property of image called rvespAlt. You can set it for the current picture: RichViewEdit1.SetCurrentItemExtraStrProperty(rvespAlt, "Something to show", True); This property is supported by RichViewActions (can be entered in the...
by Sergey Tkachenko
Wed Nov 16, 2005 7:23 pm
Forum: Support
Topic: Printing Problem with tables!
Replies: 47
Views: 141863

When there will be some results that I can show, I'll post info here.
by Sergey Tkachenko
Wed Nov 16, 2005 7:21 pm
Forum: Support
Topic: Infos about a table which is in the cell of another table
Replies: 2
Views: 11803

Code for deleting selected rows is copied from Demos\Delphi\Editor 1\ (with some modifications) var item: TCustomRVItemInfo; table: TRVTableItemInfo; Data: Integer; r,c,cs,rs: Integer; rve: TCustomRichViewEdit; ItemNo: Integer; begin if not MEMO.CanChange or not MEMO.GetCurrentItemEx(TRVTableItemInf...
by Sergey Tkachenko
Mon Nov 14, 2005 9:14 pm
Forum: Support
Topic: RTF Hyperlinks with Quotes
Replies: 4
Views: 19335

I think you need to change quotes to %22 when saving RTF hyperlinks.
by Sergey Tkachenko
Mon Nov 14, 2005 9:11 pm
Forum: Support
Topic: Saving Page Background
Replies: 4
Views: 19317

May be you can save background color externaly, just like a link to background image?

About not-saving background properties in database: call DBRichViewEdit.CanChange before and DBRichViewEdit.Change after modifying the background properties.