Search found 8 matches

by LS_M
Sun Jan 25, 2026 10:17 am
Forum: ScaleRichView
Topic: Page Size A4
Replies: 1
Views: 2663

Re: Page Size A4

My mistake, stupidity of me. 😣 Since I hadn't worked with actions before, it took me a while to find the DefaultDocParameters in the TRVAControlPanel. If the DefaultDocParameters are set to A4, the application also starts with the A4 page size.

-HL
by LS_M
Fri Jan 23, 2026 11:03 am
Forum: ScaleRichView
Topic: Page Size A4
Replies: 1
Views: 2663

Page Size A4

I've been using RichView for a while now. Since I've switched to ScaleRichView, I used the ActionTest demo to familiarize myself with it.

I'm having the following problem: When I start the demo, the `OnCreate` event calls `srvActionsResource.rvActionNew1.ExecuteTarget(SRichViewEdit1.RichViewEdit ...
by LS_M
Tue Mar 04, 2025 3:56 pm
Forum: Support
Topic: Default printer and application startup
Replies: 6
Views: 94188

Re: Default printer and application startup

Running the application without RichView will get us nowhere because as I said it happens only very rarely at the customers side we never had a chance to track it down in house. At least we are happy to give a solution to the customer with the printer switch. It is not a satisfactory manner but at ...
by LS_M
Tue Mar 04, 2025 6:56 am
Forum: Support
Topic: Default printer and application startup
Replies: 6
Views: 94188

Re: Default printer and application startup

I have observed a similar phenomenon that in our case has to do with the printer. Don't know for sure if it has to do with RichView, but only in software with RichView does this problem occur that the software doesn't start. Most of the time after Windows updates there is an exception and the ...
by LS_M
Tue May 03, 2016 4:16 pm
Forum: Examples, Demos
Topic: [Demo] Making PDF using Synopse PDF Engine
Replies: 8
Views: 89822

Hi Sergey,

again many thank's for quick support.
At the end I figured the replacement with FPageInfo.PageSize.cy out myself but thank you anyway.
To make it really work with Delphi 5 you need to change the uses of RVSynPDF.dpr as follows

uses
//Vcl.Forms,
Forms,
Windows,

at the bottom of ...
by LS_M
Tue May 03, 2016 8:58 am
Forum: Examples, Demos
Topic: [Demo] Making PDF using Synopse PDF Engine
Replies: 8
Views: 89822

Thank's Sergey for your fast reply. Unfortunately I was not clear in my question. The error is "undefined Height" which is in FPageInfo.PageSize.Height. So it says that it cant't find Height.

Thank's for your patience.
by LS_M
Mon May 02, 2016 4:32 pm
Forum: Examples, Demos
Topic: [Demo] Making PDF using Synopse PDF Engine
Replies: 8
Views: 89822

Hi all,

can't compile the demo with Delphi 5. I know Delphi 5 is rather old but serves my purpose.

The error, the only error, occurs in
TPageInfo = record
PageFormat: TPDFPaperSize;
PageSize: TSize;
DocRect: TRect;
end;
can't find TPDFPapersize

I can not find where TPDFPapersize is declared ...
by LS_M
Fri Oct 26, 2012 4:36 pm
Forum: Support
Topic: How to add a new line when #13
Replies: 19
Views: 74918

Did you try AddTextNL('.....'+#10+#13+'....' ....

This one works for me InsertText('text1'+#10+#13+'text2');

- HL