Search found 4 matches

by LS_M
Tue May 03, 2016 4:16 pm
Forum: Examples, Demos
Topic: [Demo] Making PDF using Synopse PDF Engine
Replies: 8
Views: 61967

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 RVSynPDF.dp...
by LS_M
Tue May 03, 2016 8:58 am
Forum: Examples, Demos
Topic: [Demo] Making PDF using Synopse PDF Engine
Replies: 8
Views: 61967

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

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. Any poi...
by LS_M
Fri Oct 26, 2012 4:36 pm
Forum: Support
Topic: How to add a new line when #13
Replies: 19
Views: 51026

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

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

- HL