Search found 6 matches

by LS_M
Tue Mar 04, 2025 3:56 pm
Forum: Support
Topic: Default printer and application startup
Replies: 6
Views: 60275

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: 60275

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: 82000

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: 82000

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: 82000

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: 69969

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

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

- HL