Search found 9406 matches

by Sergey Tkachenko
Sat May 03, 2008 11:27 am
Forum: ScaleRichView
Topic: is Rvstyle need and Page format problem
Replies: 4
Views: 20216

What version of Delphi/C++Builder and TRichView do you use?
by Sergey Tkachenko
Wed Apr 30, 2008 3:05 pm
Forum: ScaleRichView
Topic: The action test doesn't scrooll to finding word(s) ?
Replies: 4
Views: 20080

We will try to fix this problem in the next update of ScaleRichView.
by Sergey Tkachenko
Wed Apr 30, 2008 2:58 pm
Forum: Support
Topic: Detection af aan jpeg in a TMemorystream for a RichView
Replies: 11
Views: 23501

Please describe what you want to implement with more details.
by Sergey Tkachenko
Wed Apr 30, 2008 2:56 pm
Forum: Support
Topic: cell borders become invisible after exporting to HTML
Replies: 2
Views: 16141

Do you use SaveHTML or SaveHTMLEx? SaveHTML does not use CSS for tables (unless you include rvsoForceNonTextCSS in the Options parameter), so a very limited set of HTML keywords is available for it. Tables exported by SaveHTMLEx must look like in TRichView. If you think that you table is exported in...
by Sergey Tkachenko
Tue Apr 29, 2008 3:23 pm
Forum: Support
Topic: Detection af aan jpeg in a TMemorystream for a RichView
Replies: 11
Views: 23501

It is saved by TRichView in RVF. See http://www.trichview.com/help/index.html?rvf_specification.html The line "1 0 0 0 0" belongs to some text item, not to picture item. The line containing picture starts from -3 (rvsPicture). The next line is a picture name (usually empty) The next line i...
by Sergey Tkachenko
Tue Apr 29, 2008 9:46 am
Forum: Support
Topic: Multilevel numbering
Replies: 5
Views: 15128

uses RVMarker;
...
Counter := TRVMarkerItemInfo(RichViewEdit1.GetItem(n-1)).Counter
...
by Sergey Tkachenko
Tue Apr 29, 2008 9:43 am
Forum: Support
Topic: TRVEditRVData.ApplyParaStyle feature?
Replies: 4
Views: 13776

In MS Word, even if you select table as a part of larger selection, applying paragraph attributes to the selection applies them to all table cells.
by Sergey Tkachenko
Tue Apr 29, 2008 9:40 am
Forum: Support
Topic: Always unable to export to MS Word
Replies: 39
Views: 105153

No. Sorry, I do not know how to solve this problem.
by Sergey Tkachenko
Fri Apr 25, 2008 4:09 pm
Forum: Support
Topic: Enquiry for license information
Replies: 1
Views: 6993

If both the computer owned by developer and the computer owned by his client have TRichView installed, both of them must have a TRichView license (TRichView license does not allow to give TRichView source code to anyone who does not own TRichView license). Of course, if the developer is an employee ...
by Sergey Tkachenko
Thu Apr 24, 2008 3:59 pm
Forum: Support
Topic: Corupted image in RichEdit
Replies: 5
Views: 15767

It's something wrong with TJPEGImage, unfortunately I do not know what to do with it.
TRichView only stores images using their SaveToStream/LoadFromStream methods, and draws using Canvas.Draw and Canvas.StertchDraw...
by Sergey Tkachenko
Thu Apr 24, 2008 3:53 pm
Forum: Support
Topic: List out of bounds Exception in TRVEditRVData.GetCurItemNo
Replies: 8
Views: 22051

These flags are for internal use and do not necessary mean that you expect.
You can upgrade to version 10.0, it's free.
by Sergey Tkachenko
Wed Apr 23, 2008 5:47 am
Forum: Support
Topic: Corupted image in RichEdit
Replies: 5
Views: 15767

If documents are stored in RVF format, images are stored using graphic.SaveToStream and LoadFromStream methods. So the problem should be in the graphic class used for this picture.
Or do you use RTF?
by Sergey Tkachenko
Tue Apr 22, 2008 11:57 am
Forum: Support
Topic: FastReport wapper
Replies: 37
Views: 154445

After completing all work related to the last release (yes, it's not finished yet), I plan to implement saving headers and footers in RTF (not too difficult and was promised long ago). Then I'll need to choose the next step: FR, or improvements in formatting (including left and right picture align),...
by Sergey Tkachenko
Tue Apr 22, 2008 11:54 am
Forum: Support
Topic: List out of bounds Exception in TRVEditRVData.GetCurItemNo
Replies: 8
Views: 22051

OnCaretMove may be called when the document is not formatted yet.
Selection-related methods must not be used in this event, but methods related to the caret position must be available.

Do you use RichView 10.0? It looks like all checks for the range of CaretDrawItemNo are already implemented.
by Sergey Tkachenko
Mon Apr 21, 2008 4:56 pm
Forum: Support
Topic: List index out of bounds
Replies: 1
Views: 7167

Please send me a sample project reproducing this problem ([email protected])