Search found 9406 matches

by Sergey Tkachenko
Thu Jan 17, 2008 5:25 pm
Forum: ScaleRichView
Topic: list index out of bound (indexnumber) error
Replies: 3
Views: 18131

This bug will be fixed in the next update.
by Sergey Tkachenko
Thu Jan 17, 2008 10:50 am
Forum: ScaleRichView
Topic: Adding actions
Replies: 3
Views: 16103

This text was written for TRichViewEdit. For TSRichViewEdit, the proper values of SRichViewEdit.RichViewEdit.Options are set by default. Actions must work with TSRichViewEdit automatically. Instructions. 1) Add actions to your project. Possible solutions: a) Place TActionList component on form/datam...
by Sergey Tkachenko
Thu Jan 17, 2008 9:47 am
Forum: Support
Topic: RichViewEdit1.Paste doesn't work inside the table cell.
Replies: 5
Views: 14424

It is not focused because its child control (cell inplace editor) is focused instead.
Use RichViewEdit1.FocusedEx
by Sergey Tkachenko
Thu Jan 17, 2008 9:44 am
Forum: Support
Topic: Cannot compile RVXML on D2007
Replies: 3
Views: 10701

You need newer version of RVXML.
It is available for registered users.
To get access to protected section for registered users, please send me a private message with registration details.
by Sergey Tkachenko
Thu Jan 17, 2008 9:41 am
Forum: Support
Topic: Always unable to export to MS Word
Replies: 39
Views: 105140

What's the value of RVOfficeConverter1.ErrorCode after calling RVOfficeConverter1.ExportRV?
by Sergey Tkachenko
Wed Jan 16, 2008 6:09 pm
Forum: Support
Topic: Selection bounds and Unicode text
Replies: 3
Views: 11619

You can use RVGetSelection and RVSetSelection from RVLinear.pas to store/restore the selection. They work if document has Unicode text.
by Sergey Tkachenko
Wed Jan 16, 2008 6:04 pm
Forum: Support
Topic: RichViewEdit1.Paste doesn't work inside the table cell.
Replies: 5
Views: 14424

Then remove IF.
by Sergey Tkachenko
Wed Jan 16, 2008 6:02 pm
Forum: Support
Topic: Always unable to export to MS Word
Replies: 39
Views: 105140

At least changing to jpg helps, not sure about changing to unknown extension.
by Sergey Tkachenko
Wed Jan 16, 2008 6:01 pm
Forum: Support
Topic: Dragon Naturally Speaking 9.5
Replies: 16
Views: 44745

I never worked with MSAA. It looks like it requires implementation of IAccessible and may be a couple more interfaces.
Please remind me again after release of next TRichView update (v10.0), planned for February.
by Sergey Tkachenko
Tue Jan 15, 2008 4:06 pm
Forum: ScaleRichView
Topic: RTF Formatting question
Replies: 5
Views: 22892

TRichView itself never reads LeftMargin and other margin properties from RTF. It can read DocParameters property if RTFReadProperties.ReadDocParameters = True.
As for ScaleRichView specifics, I'll ask Ilya.
by Sergey Tkachenko
Tue Jan 15, 2008 3:57 pm
Forum: Support
Topic: DocProperties should not be loaded
Replies: 1
Views: 8039

I cannot reproduce copying of DocProperties if rvfoLoadDocProperties is excluded from rv.RVFOptions. But if you call rv.LoadRVFFromStream, rv.DocProperties will be cleared, because rv.LoadRVFFromStream calls rv.Clear, and rv.Clear clears rv.DocProperties. So if you need to store them after call of C...
by Sergey Tkachenko
Tue Jan 15, 2008 3:41 pm
Forum: Support
Topic: Always unable to export to MS Word
Replies: 39
Views: 105140

Please send me compiled exe to richview at gmail dot com
(zipped with password protection, otherwise it will be rejected by gmail)
by Sergey Tkachenko
Tue Jan 15, 2008 3:39 pm
Forum: Support
Topic: RichViewEdit1.Paste doesn't work inside the table cell.
Replies: 5
Views: 14424

Sorry, I cannot reproduce this problem.
by Sergey Tkachenko
Tue Jan 15, 2008 3:37 pm
Forum: Support
Topic: Selection bounds and Unicode text
Replies: 3
Views: 11619

Sorry, but if you create a list of SearchTextW results, I think you know what text is found.
by Sergey Tkachenko
Sat Jan 12, 2008 1:38 pm
Forum: Support
Topic: TEdit and resizing
Replies: 3
Views: 11170

You can assign this code to OnChange of TEdits: procedure TForm1.OnControlChange(Sender: TObject); var txt: TEdit; begin txt := (Sender as TEdit); Canvas.Font := txt.Font; txt.ClientWidth := Canvas.TextWidth(txt.Text)+6; RichViewEdit1.AdjustControlPlacement2(txt); end; (do not forget to reassign it ...