Search found 10 matches

by Stefaan
Thu Oct 26, 2017 8:58 am
Forum: Support
Topic: TrvHtmlViewImporter and THMLViewer v11.8
Replies: 6
Views: 20130

Re: TrvHtmlViewImporter and THMLViewer v11.8

Strange, after completely uninstalling richView and reinstalling it, it does install the htmlViewImporter automatically.
by Stefaan
Thu Oct 26, 2017 8:27 am
Forum: Support
Topic: TrvHtmlViewImporter and THMLViewer v11.8
Replies: 6
Views: 20130

Re: TrvHtmlViewImporter and THMLViewer v11.8

When I compile it manually, I don't get any error.
by Stefaan
Wed Oct 25, 2017 3:29 pm
Forum: Support
Topic: TrvHtmlViewImporter and THMLViewer v11.8
Replies: 6
Views: 20130

Re: TrvHtmlViewImporter and THMLViewer v11.8

How does the installer check if the htmlViewer is installed? I compiled THTMLViewer version 11.8 in delphi tokyo. I created the packages FrameViewerXE11.dpk and dclFrameViewerXE11.dpk. The installer says: Installing optional RvHtmlViewImporter... Skipped. So it doesn't detect the htmlViewer.
by Stefaan
Thu Jun 18, 2015 9:28 am
Forum: ScaleRichView
Topic: Feature request: OnSpellingCheckEx in TSRichViewEdit
Replies: 0
Views: 17204

Feature request: OnSpellingCheckEx in TSRichViewEdit

In TRichView you can use the OnSpellingCheckEx event, when enabled in RV_Defs.inc. In this event you have access to the current item being checked.

But TSRichViewEdit doesn't have this OnSpellingCheckEx event. Can you add it to the ScaleRichView too? Please?
by Stefaan
Thu Jan 28, 2010 10:12 am
Forum: Examples, Demos
Topic: [How to] How to use PNG and GIF images in TRichView
Replies: 17
Views: 186330

Another possibility is using the method Classes.RegisterClassAlias to register TPNGObject as an alias for TPngImage.

Delphi code:

Code: Select all

RegisterClassAlias(TPngImage, 'TPNGObject');
C++ code:

Code: Select all

RegisterClassAlias(__classid(TPngImage), "TPNGObject");
by Stefaan
Wed Dec 30, 2009 3:23 pm
Forum: Support
Topic: rvActionInsertTable1.ShowTableSizeDialog working with TdxBar
Replies: 3
Views: 14141

Delphi code untested: procedure TForm1.Button1Click(Sender: TObject); var itemLink: TdxBarItemLink; rect: TRect; leftTop, rightBottom: TPoint; begin itemLink := TdxBarItem(Sender).ClickItemLink; rect := itemLink.ItemRect; leftTop := Point(rect.Left, rect.Top); rightBottom := Point(rect.Right, rect.B...
by Stefaan
Wed Dec 30, 2009 2:55 pm
Forum: Support
Topic: rvActionInsertTable1.ShowTableSizeDialog working with TdxBar
Replies: 3
Views: 14141

In C++ : void __fastcall TfrmEditor::btnInsertTableClick(TObject *Sender) { TdxBarItemLink* itemLink = ((TdxBarItem*) Sender)->ClickItemLink; Types::TRect rect = itemLink->ItemRect; TPoint leftTop(rect.Left, rect.Top); TPoint rightBottom(rect.Right, rect.Bottom); leftTop = itemLink->BarControl->Clie...
by Stefaan
Wed Jun 03, 2009 3:56 pm
Forum: ScaleRichView
Topic: Html background color
Replies: 1
Views: 14890

Html background color

When a html without background color is opened, the background is clBtnFace in the editor. Html example: <html> <body> Test </body> </html> How can I display such a html with a white background? Of course, when the html has a background color specified, this color should be used instead of white. I'...
by Stefaan
Tue Feb 17, 2009 8:46 am
Forum: ScaleRichView
Topic: How to compose a document from multiple documents?
Replies: 3
Views: 19943

Thanks for your answer. Is it possible to show a print preview of the composite document to the user before printing?
by Stefaan
Mon Feb 16, 2009 4:44 pm
Forum: ScaleRichView
Topic: How to compose a document from multiple documents?
Replies: 3
Views: 19943

How to compose a document from multiple documents?

I have a document with fields, that must be replaced with values. Several documents will be created by using different values. All these documents should come in a large document, with each document beginning on a new page. This resulting document must be shown in a print preview and be printed. Wha...