Search found 9445 matches

by Sergey Tkachenko
Tue Jul 22, 2008 3:05 pm
Forum: ScaleRichView
Topic: string underlined like in spelling
Replies: 18
Views: 62633

Strange, I cannot reproduce the problem with not updating live spelling underlines. I added the following code in OnSpellingCheck: Misspelled := Pos('a', AWord)<>0; and played with it. It worked as expected, when I added space and deleted it by backspace (both in 'aaabbb' and in 'bbbaaa'). Do you us...
by Sergey Tkachenko
Tue Jul 22, 2008 12:54 pm
Forum: Support
Topic: How to send text to TRichView
Replies: 4
Views: 11718

EM_STREAMIN and EM_STREAMOUT are not implemented in TRichView/TRichViewEdit.
It's not very hard to implement them, I'll try to do it in the next update.
by Sergey Tkachenko
Tue Jul 22, 2008 12:48 pm
Forum: Support
Topic: Can we Format TRichviewEdit without assigning Parent?
Replies: 3
Views: 13627

I always had problems when I created classes in threads and freed them in the context of the main process, or vice versa.
So I highly not recommend to add/remove items or reformat documents in threads, use Synchronize.
by Sergey Tkachenko
Tue Jul 22, 2008 12:44 pm
Forum: Support
Topic: With the clicks cell the content a spreadsheet in Edit shows
Replies: 3
Views: 10295

Use OnRVMouseDown event. procedure TForm3.RichViewEdit1RVMouseUp(Sender: TCustomRichView; Button: TMouseButton; Shift: TShiftState; ItemNo, X, Y: Integer); begin if (Button<>mbLeft) or (Shift<>[]) then exit; if RichViewEdit1.InplaceEditor<>nil then Edit1.Text := GetAllText(RichViewEdit1.TopLevelEdit...
by Sergey Tkachenko
Sun Jul 20, 2008 7:00 pm
Forum: Support
Topic: With the clicks cell the content a spreadsheet in Edit shows
Replies: 3
Views: 10295

Sorry, I do not understand your question.
by Sergey Tkachenko
Thu Jul 17, 2008 7:04 pm
Forum: Support
Topic: Problem with ppDBRichView (RichVIewWrapper for ReportBuild)
Replies: 2
Views: 9268

I'll try to help in the beginning of the next week, when I return
by Sergey Tkachenko
Thu Jul 17, 2008 7:02 pm
Forum: Support
Topic: Problem on compiling with source codes
Replies: 2
Views: 10583

It's strange, this define must not be defined
by Sergey Tkachenko
Thu Jul 17, 2008 6:55 pm
Forum: Support
Topic: Can we Format TRichviewEdit without assigning Parent?
Replies: 3
Views: 13627

It's not possible in the current version.
Workarounds:
- assign invisible form as a parent;
- use TRVReportHelper
by Sergey Tkachenko
Thu Jul 17, 2008 6:53 pm
Forum: Support
Topic: Report Builder and ppDBRichView to Word document
Replies: 3
Views: 8527

I'll try to solve this problem next week
by Sergey Tkachenko
Tue Jul 15, 2008 8:27 pm
Forum: Support
Topic: How to send text to TRichView
Replies: 4
Views: 11718

These messages are not supported. I tried to implement WM_SETTEXT, but it conflicted with VCL implementation of this message, so I had to disable it for Delphi 2005-2007. Only EM_*** messages for text are supported. And I do not know A standard way to get/set RTF from/to window. I am afraid you need...
by Sergey Tkachenko
Tue Jul 15, 2008 8:20 pm
Forum: Support
Topic: TCustomRichView.LoadRTFFromStream Slowness
Replies: 2
Views: 8524

That another rtf viewer may just ignore all this header info, and it displays a text alternative to list markers (even the standard RichEdit does not support MS Word's way of saving bullets&numbering and loads them as a plain text followed by tab). If this RTF file was created by TRichView, call...
by Sergey Tkachenko
Tue Jul 15, 2008 8:13 pm
Forum: Support
Topic: Missing RichView components for Addict3.5
Replies: 10
Views: 21644

I opened access to the protected forums for you account. See the Announcement forum, you can find all links to updates there.
by Sergey Tkachenko
Tue Jul 15, 2008 8:07 pm
Forum: Support
Topic: TDBRichViewEdit Options
Replies: 6
Views: 15084

Yes, right click the TDBRichviewEdit at design time, a context menu will appear, and its first item is "Settings"
by Sergey Tkachenko
Tue Jul 15, 2008 8:03 pm
Forum: Support
Topic: Report Builder and ppDBRichView to Word document
Replies: 3
Views: 8527

Do you use some third-party addons (extra devices, export devices, edocengine, etc.) to make PDF file?
by Sergey Tkachenko
Sat Jul 12, 2008 6:30 pm
Forum: Support
Topic: Error when loading RVF stream with hyperlinks
Replies: 3
Views: 12304

include rvfoTagsArePChars in Options property