Search found 9411 matches

by Sergey Tkachenko
Thu May 31, 2007 8:19 am
Forum: Support
Topic: Arabic from HTML
Replies: 3
Views: 10445

1) Converters generate RTF file which is loaded in TRichView. If charset is specified in RTF file, it will be used. But probably this converter does not specify the charset.

2) Yes, if you send WM_INPUTLANGCHANGE to RichViewEdit, it must do the work.
by Sergey Tkachenko
Wed May 30, 2007 11:54 am
Forum: Support
Topic: Arabic from HTML
Replies: 3
Views: 10445

1. In order to support RTL languages, set RichViewEdit1.BiDiMode = rvbdRightToLeft or rvbdLeftToRight. 2. Probably, wrong charset is used. If you include rvoAutoSwitchLang in EditorOption, charset of the current text style will be switched according to the keyboard language when the user changes key...
by Sergey Tkachenko
Sat May 26, 2007 1:59 pm
Forum: Support
Topic: Saving Tables In Tables
Replies: 3
Views: 11206

Please send me a simple project reproducing this problem.
by Sergey Tkachenko
Sat May 26, 2007 1:58 pm
Forum: Support
Topic: wysiwyg problem ..
Replies: 5
Views: 15585

A new WYSIWYG component, based on TRichView engine, will be released soon (middle of June). It is created by another deleloper and it will not be a free upgrade. The first version of this component is complete, the current stage is translating its help file in English.
by Sergey Tkachenko
Fri May 25, 2007 7:00 am
Forum: Support
Topic: Cannot Position Cursor Within Text
Replies: 5
Views: 15327

Do you call Format for RichView containing MasterRVTable?
by Sergey Tkachenko
Fri May 25, 2007 6:56 am
Forum: Support
Topic: "get.cell.fontsize"
Replies: 2
Views: 9548

var StyleNo, ParaNo: Integer; if (rveTable.Cells[r,2]<>nil) and (rveTable.Cells[r,2].GetRVData.GetItemStyle(0)>=0) then begin StyleNo := rveTable.Cells[r,2].GetRVData.GetItemStyle(0); ParaNo := rveTable.Cells[r,2].GetRVData.GetItemPara(0); rveTable.Cells[r,2].Clear; rveTable.Cells[r,2].AddNL('Paul'...
by Sergey Tkachenko
Thu May 24, 2007 5:36 pm
Forum: Support
Topic: Why TRVReportHelper wrongly resizes images on print preview?
Replies: 2
Views: 10025

The following things must be changed: 1) Add PrnCanvas: TCanvas to the form's private variables. 2) Change these procedures to use PrnCanvas: { Menu: Print preview } procedure TForm1.Preview1Click(Sender: TObject); var DC: HDC; begin DC := RV_GetPrinterDC; // from PtblRV unit PrnCanvas := TCanvas.Cr...
by Sergey Tkachenko
Thu May 24, 2007 10:53 am
Forum: Support
Topic: cell greater than one page
Replies: 4
Views: 12568

No, the public version is the latest version.
I have a local version with support of subscript and superscript, but it was not published yet.
by Sergey Tkachenko
Wed May 23, 2007 6:27 am
Forum: Support
Topic: Saving TRichview into db with SQL
Replies: 1
Views: 7540

Can you give me a sample of SQL statement inserting multiline text in table? Sorry, my knowledge of SQL is very basic.

Yes. Just call RegisterClasses([TEdit, TCheckbox]) before loading.
by Sergey Tkachenko
Wed May 23, 2007 6:24 am
Forum: Support
Topic: is there already some news
Replies: 2
Views: 9436

Yes, but it is available only for registered users.
Trials will be updated after finishing a new version of help file.
by Sergey Tkachenko
Wed May 23, 2007 6:23 am
Forum: Support
Topic: cell greater than one page
Replies: 4
Views: 12568

This feature (printing table row on several pages) is not implemented in the public trial (v1.9.24). However, it is implemented in the latest version available for registered users.
by Sergey Tkachenko
Mon May 21, 2007 4:59 pm
Forum: Support
Topic: FastReport wapper
Replies: 37
Views: 155014

The answer is the same. It will be implemented, but this work is not started yet, and I cannot tell the date because I do not want to misguide you.
by Sergey Tkachenko
Mon May 21, 2007 4:58 pm
Forum: Support
Topic: File size with TRichView
Replies: 7
Views: 16619

Besides, if it is about RTF file size, please upgrade to the latest version available for registered users. It generates smaller RTF files.
by Sergey Tkachenko
Mon May 21, 2007 4:56 pm
Forum: Support
Topic: File size with TRichView
Replies: 7
Views: 16619

Probably it is because of unused styles.
Call DeleteUnusedStyles when loading documents. Ideally, it should be called just before saving, but it is not desirable because it clears undo buffer.
by Sergey Tkachenko
Thu May 17, 2007 5:47 pm
Forum: Support
Topic: RVHTML and UTF-8
Replies: 3
Views: 12060

No, it detects no encoding. It assumes that file is either in UTF-8 or in DEFAULT_CHARSET.