pdf

mrobles

Member
Hi.

A very open question ...

With office 2010:
Excel
chExcelApplication:ActiveSheet:ExportAsFixedFormat(0,"your_file.pdf",0,TRUE,FALSE,,,TRUE).
Word
WORD:activedocument:saveas("your_file.pdf",17).
 

GregTomkins

Active Member
We crank out massive amounts of fairly heavy-duty PostScript using P4GL PUT statements; then we use a FOSS thing called 'ps2pdf' to turn it into PDF. We do so much of this, we undertook a fair-sized project a while ago to move all of the ps2pdf processing onto a separate server.

I'm not sure but my IMPRESSION is that making your own PDF is rocket science, but making your own PostScript is relatively simple, once you get used to the whole RPN thing (2 2 + rather than 2 + 2).
 

Cecil

19+ years progress programming and still learning.
Just chucking in my two cents. I'm currently using wkhtmltopdf. Generate HTML using webspeed/speedscript.

Wkhtmltopdf It handles headers & footers and table of content.
 
Top