Search found 9390 matches

by Sergey Tkachenko
Mon Nov 27, 2006 1:08 pm
Forum: Support
Topic: Printing isn't correct on every printers
Replies: 61
Views: 156368

I opened access to the protected scection, see "Announcement" forum.
by Sergey Tkachenko
Sun Nov 26, 2006 10:35 pm
Forum: Support
Topic: Associating a rve file with TRichView
Replies: 6
Views: 18897

Call RichViewRvf.Format after RichViewRvf.LoadRVF.
(it's the same for editor)
by Sergey Tkachenko
Sun Nov 26, 2006 10:34 pm
Forum: Support
Topic: Printing isn't correct on every printers
Replies: 61
Views: 156368

Uploaded
by Sergey Tkachenko
Sun Nov 26, 2006 12:45 pm
Forum: Support
Topic: Associating a rve file with TRichView
Replies: 6
Views: 18897

I still do not understand. Users work with applications, not with components.
by Sergey Tkachenko
Sun Nov 26, 2006 12:42 pm
Forum: Support
Topic: Table Problems
Replies: 4
Views: 12741

Please make the following: switch field format back to RVF and exclude rvfoSaveBinary from RVFOptions. If tables will be saved normally, that means that this field type cannot be used to store binary data.
by Sergey Tkachenko
Sat Nov 25, 2006 8:32 pm
Forum: Support
Topic: Associating a rve file with TRichView
Replies: 6
Views: 18897

Sorry, I do not understand the question.
What do you want to associate? *.rve files with some application?
by Sergey Tkachenko
Sat Nov 25, 2006 8:30 pm
Forum: Support
Topic: Table Problems
Replies: 4
Views: 12741

Well, in order to solve the problem, I need to reproduce it.

Can it be reproduced in simple project using BDE?
If not, please give me instructions how to install Firebird and IBX (where I need to download installs)
by Sergey Tkachenko
Sat Nov 25, 2006 8:20 pm
Forum: Support
Topic: memory leak, removing duplicate images
Replies: 1
Views: 8662

Confirmed. Fixed version is uploaded. As for the questions of duplicate images. Currently, it's not possible to add the same graphic object several times in TRichView. But if all of them will be created using Assign method from one source (instead of loading from file), they will share the same grap...
by Sergey Tkachenko
Sat Nov 25, 2006 4:52 pm
Forum: Examples, Demos
Topic: [Example] Saving additional information in RTF files (and in DocX too)
Replies: 4
Views: 69148

How to save several documents in on RTF file so that page numbers restarted on each subdocument. Assuming that subdocuments are stored in RVF files. The main procedure: procedure CreateRTFWithSections(const RVFFiles: array of String; const RTFFile: String; rv: TCustomRichView); var i: Integer; Stre...
by Sergey Tkachenko
Sat Nov 25, 2006 4:29 pm
Forum: Support
Topic: Select a range in RVData!
Replies: 5
Views: 16569

I think the simplest solution would be loading text in hidden TRichViewEdit, apply text style and then add the result to the main TRichView.
by Sergey Tkachenko
Sat Nov 25, 2006 3:03 pm
Forum: Support
Topic: How rvvaMiddle works?
Replies: 8
Views: 22080

No, it's not possible in TRichView, merged cells still must be rectangular.
by Sergey Tkachenko
Sat Nov 25, 2006 2:29 pm
Forum: Support
Topic: copy bullet style
Replies: 10
Views: 26968

mamouri , everybody makes mistakes. I really appreciate your help. Actually, my code was incorrect too (checking empty selection), I fixed it. maddwood , yes, the code posted by mamouri (and then corrected by me) adds bullets to the selected paragraphs in TRichView. If you want to apply list style ...
by Sergey Tkachenko
Sat Nov 25, 2006 12:40 pm
Forum: Support
Topic: Select a range in RVData!
Replies: 5
Views: 16569

Once again, RVGetSelection and RVSetSelection work for all TCustomRVDatas inside the given TCustomRichViewEdit, so special functions for TCustomRVData are not necessary. For example, you can select some items in cell of table, then call RVGetSelection for RichView containing this table, and the sele...
by Sergey Tkachenko
Sat Nov 25, 2006 12:30 pm
Forum: Support
Topic: How rvvaMiddle works?
Replies: 8
Views: 22080

Sorry, your schemes of tables looks corrupted (because of different character widths?), so I do not understand your question.
by Sergey Tkachenko
Sat Nov 25, 2006 12:28 pm
Forum: Support
Topic: bullet to rtf
Replies: 3
Views: 12137

I received your e-mail. Briefly: bullets are saved as bullets, but WordPad (RichEdit) does not understand them. In RTF specifications, representation of bullets&numbering was cardinally changed since MS Word97, but standard RichEdits continue using old, Word6-like representation. TRichView works...