02-11-2014 04:23 AM
When I export my TDR-report (test.tdr in the attachment) to PDF I get only truncated reports (see testDIAdem2012.pdf in the attachment). The export to JPG or WMF is OK. (see test.jpg in the attachment). Even the output to the printer is as expected.
It does not matter if I use the File-Menu\PDF Export or the following code
Const sTdr = "C:\temp\test.TDR" Const sPDF = "C:\temp\test.pdf" Call PicLoad(sTdr) PicWidthInScal = 29.7 PicHeightInScal = 21 PrintLeftMarg = 0 PrintTopMarg = 0 PrintOrient = "landscape" IF FileExist(sPDF) THEN Call FileDelete(sPDF) PDFFileName = sPDF PrintName = "winspool,DIAdem PDF Export" Call PicPrint ("WinPrint")
PicPdfExport results in the same truncated report.
What can I do to get a whole PDF-Report page?
gemu
Solved! Go to Solution.
02-25-2014 02:52 AM
Hi gemu,
when chossing the pdf export the frame of your report is printed. You can deactivate the frame in the layout options.
Select: Einstellungen >> Layout einrichten >> Layout-Paramter ...
I attach a screenshot of the box you need to uncheck.
If this does not solve your problem, please feel free to come back to me.
Kind Regards,
Vanessa
AE Munich
02-25-2014 03:52 AM
Hi Vanessa,
you made my day!
Thanks
gemu