Search found 9401 matches

by Sergey Tkachenko
Mon Dec 10, 2007 1:51 pm
Forum: Support
Topic: make RichView(Edit) transparent?
Replies: 1
Views: 7064

You can draw background on bitmap and assign it to BackgroundBitmap property.
by Sergey Tkachenko
Mon Dec 10, 2007 1:50 pm
Forum: Support
Topic: I have an question about TRichViewEdit
Replies: 26
Views: 48138

If some components are not printed, you can help TRichView to print them.
Process TRVPrint.OnPrintComponent event. In this event, if the component is TPaintBox, create a bitmap (having the same size as the paint box) and draw the paint box on it.
If you need further help, let me know.
by Sergey Tkachenko
Mon Dec 10, 2007 1:47 pm
Forum: Support
Topic: SafeDeleteItem when only 1 item in cell
Replies: 4
Views: 13709

Why do you call DeleteItems(-1)? It makes no sense. Items are indexed from 0 to ItemCount-1.
If you deleted the last item in the table cell, you should insert something instead (Cell.AddNL('', 0, 0), for example)
by Sergey Tkachenko
Mon Dec 10, 2007 1:45 pm
Forum: Support
Topic: Copy RVData from one in another RichView Component
Replies: 7
Views: 21033

AppendFrom is bad because it cannot copy some items (for example tables and controls).
So the best solution is to copy via RVF stream.
Page breaks must be retained. Can you tell me how to reproduce the problem?
by Sergey Tkachenko
Mon Dec 10, 2007 1:43 pm
Forum: Support
Topic: Exception if compiler directive RVDONOTUSELIST is disabled
Replies: 2
Views: 9606

Can you send me a test project?
by Sergey Tkachenko
Mon Dec 10, 2007 1:43 pm
Forum: Support
Topic: RichView, Reportbuilder and wPDF
Replies: 3
Views: 12851

It's not tested.
Can you make a test application? Do you know if all necessary wPDF components are available as trials?
by Sergey Tkachenko
Sat Dec 01, 2007 2:00 pm
Forum: ScaleRichView
Topic: ScaleRichView - shareware TRichView addon for WYSIWYG edit
Replies: 19
Views: 99450

Update 2007-Dec-5: ScaleRichView v1.3.4

Requires: TRichView v1.9.48 RichViewActions v1.58.1

new: TSRVPageScroll - component displaying page thumbnails (see http://www.trichview.com/shots/scaleric ... scroll.png)
fix: Multiple fixes.
by Sergey Tkachenko
Sat Dec 01, 2007 12:21 pm
Forum: ScaleRichView
Topic: Screenshots
Replies: 3
Views: 21846

Image
New component: TSRVPageScroll (left side)
by Sergey Tkachenko
Fri Nov 30, 2007 11:48 am
Forum: Support
Topic: Control active in design time
Replies: 1
Views: 7538

Yes, in future, but not very soon.
by Sergey Tkachenko
Fri Nov 30, 2007 9:50 am
Forum: Support
Topic: Bug on export of lists into RTF
Replies: 5
Views: 14834

Assuming that you have the latest version of TRichView. 1) RVStyle.pas, function TRVListLevel.IsSimpleEqual Change the line (StartFrom = Value.StartFrom) and to (not HasNumbering or (StartFrom = Value.StartFrom)) and 2) CRVData.pas, function TCustomRVData.SaveRTFToStream Between the lines if (Marker...
by Sergey Tkachenko
Thu Nov 29, 2007 1:54 pm
Forum: Support
Topic: Property for the complete Hypertext
Replies: 4
Views: 12713

by Sergey Tkachenko
Thu Nov 29, 2007 1:03 pm
Forum: Support
Topic: Import from Word (some problems)
Replies: 6
Views: 15677

If you are also interested why in MS Word (in TOC), there is only horizontal lines above some paragraphs, but TRichView displays also left and right sides of paragraphs borders. It's because these paragraphs have top, left and right borders, but left and right border sides are white (you can see it ...
by Sergey Tkachenko
Thu Nov 29, 2007 12:18 pm
Forum: Support
Topic: Import from Word (some problems)
Replies: 6
Views: 15677

I received your file.
It's a bug in TRichView. In your file, widths of all tables (except for the first one) are specified in absolute values (twips), but because of this bug they are treated as %. So tables have about 180% of the editor width.
It will be fixed in the next update.
by Sergey Tkachenko
Thu Nov 29, 2007 11:12 am
Forum: Support
Topic: Property for the complete Hypertext
Replies: 4
Views: 12713

Do you want to read hyperlink target? In TRichView, hypertext targets are usually stored in item tags. In order to store strings in tags, include rvoTagsArePChars in RichViewEdit.Options. Then use GetItemTag method. It returns integer, convert it to PChar and assign to string. For example procedure ...
by Sergey Tkachenko
Thu Nov 29, 2007 10:11 am
Forum: Support
Topic: I have an question about TRichViewEdit
Replies: 26
Views: 48138

Sorry, I am afraid it's not possible. It requires positioning items at the specified coordinates (unsupported by TRichView)