Search found 10 matches
- Thu Oct 26, 2017 8:58 am
- Forum: Support
- Topic: TrvHtmlViewImporter and THMLViewer v11.8
- Replies: 6
- Views: 23972
Re: TrvHtmlViewImporter and THMLViewer v11.8
Strange, after completely uninstalling richView and reinstalling it, it does install the htmlViewImporter automatically.
- Thu Oct 26, 2017 8:27 am
- Forum: Support
- Topic: TrvHtmlViewImporter and THMLViewer v11.8
- Replies: 6
- Views: 23972
Re: TrvHtmlViewImporter and THMLViewer v11.8
When I compile it manually, I don't get any error.
- Wed Oct 25, 2017 3:29 pm
- Forum: Support
- Topic: TrvHtmlViewImporter and THMLViewer v11.8
- Replies: 6
- Views: 23972
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.
- Thu Jun 18, 2015 9:28 am
- Forum: ScaleRichView
- Topic: Feature request: OnSpellingCheckEx in TSRichViewEdit
- Replies: 0
- Views: 22959
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?
But TSRichViewEdit doesn't have this OnSpellingCheckEx event. Can you add it to the ScaleRichView too? Please?
- 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: 202776
Another possibility is using the method Classes.RegisterClassAlias to register TPNGObject as an alias for TPngImage.
Delphi code:
C++ code:
Delphi code:
Code: Select all
RegisterClassAlias(TPngImage, 'TPNGObject');
Code: Select all
RegisterClassAlias(__classid(TPngImage), "TPNGObject");
- Wed Dec 30, 2009 3:23 pm
- Forum: Support
- Topic: rvActionInsertTable1.ShowTableSizeDialog working with TdxBar
- Replies: 3
- Views: 15583
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 ...
- Wed Dec 30, 2009 2:55 pm
- Forum: Support
- Topic: rvActionInsertTable1.ShowTableSizeDialog working with TdxBar
- Replies: 3
- Views: 15583
- Wed Jun 03, 2009 3:56 pm
- Forum: ScaleRichView
- Topic: Html background color
- Replies: 1
- Views: 16831
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 ...
- Tue Feb 17, 2009 8:46 am
- Forum: ScaleRichView
- Topic: How to compose a document from multiple documents?
- Replies: 3
- Views: 22483
- Mon Feb 16, 2009 4:44 pm
- Forum: ScaleRichView
- Topic: How to compose a document from multiple documents?
- Replies: 3
- Views: 22483
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 ...