PC SOFT

FORUMS PROFESSIONNELS
WINDEVWEBDEV et WINDEV Mobile

Accueil → WEBDEV 2024 → PDF print with custom papersize
PDF print with custom papersize
Débuté par Lukas, 29 nov. 2017 19:25 - 2 réponses
Posté le 29 novembre 2017 - 19:25
When setting the Paper size to "Custom" and print to pdf it takes always A4 for generating the pdf.
If I set the paper size to A3 or letter it works, the only problem is with "custom".

-> Windows Server 2016


What's wrong here ? Any ideas ?
Posté le 30 novembre 2017 - 09:26
iParameter returns in production -1
Posté le 30 novembre 2017 - 12:12
As a workaround setting up a printer which supports the custom page format and set it manually before printing does the trick:

iConfigure("YourWindowsPrintername")
AFile = fWebDir()+"\Test.pdf"
iDestination(iPDF, AFile)
iPrintReport(RPT_Test)
FileDisplay(AFile,"application/pdf")


Hopefully this helps someone out, instead of wasting hours.