Search found 9411 matches

by Sergey Tkachenko
Tue May 06, 2008 3:08 pm
Forum: Support
Topic: TRVEditRVData.ApplyParaStyle feature?
Replies: 4
Views: 13788

Quite inconsistent, IMHO.
Is there any logic that if I select only table, paragraph is applied to table, but if I select table+something, paragraph is applied to table cells?
by Sergey Tkachenko
Tue May 06, 2008 3:05 pm
Forum: Support
Topic: Detection af aan jpeg in a TMemorystream for a RichView
Replies: 11
Views: 23510

'TJPEGImage' string, then line break (#13#10), then 4 bytes containing size of jpeg data, then jpeg data.
by Sergey Tkachenko
Mon May 05, 2008 5:20 pm
Forum: Support
Topic: demo ActionTest
Replies: 2
Views: 8510

This function has open array (of integer) as a parameter. It is translated to C++ as 2 parameters: (1) a pointer to array and (2) size (minus 1): bool __fastcall NextCurItem(const int * StyleNo, const int StyleNo_Size); So it should be: int styles[] = { rvsPicture, rvsHotspot, rvsHotPicture }; SRich...
by Sergey Tkachenko
Mon May 05, 2008 5:09 pm
Forum: Support
Topic: Fixed cells
Replies: 3
Views: 12154

table := TRVTableItemInfo.CreateEx(2, 2, RichViewEdit1.RVData); table.Options := table.Options + [rvtoIgnoreContentWidth, rvtoIgnoreContentHeight]; for r := 0 to table.RowCount-1 do for c := 0 to table.ColCount-1 do begin table.Cells[r,c].BestWidth := 100; table.Cells[r,c].BestHeight := 100; end; R...
by Sergey Tkachenko
Mon May 05, 2008 5:04 pm
Forum: Support
Topic: TRichview Format Error
Replies: 2
Views: 9349

Collections of text and paragraph styles must have at least one item.
May be this is the reason for this problem.
by Sergey Tkachenko
Sat May 03, 2008 11:27 am
Forum: ScaleRichView
Topic: is Rvstyle need and Page format problem
Replies: 4
Views: 20226

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

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

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

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

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

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

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

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

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

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...