Hi,
NativePDF: Is it possible to save two datawindows in one pdf file? It was easy to do with pdf printer, how to do it with NativePDF ?
Thanks.
Hi,
NativePDF: Is it possible to save two datawindows in one pdf file? It was easy to do with pdf printer, how to do it with NativePDF ?
Thanks.
Guys - I didn't see this thread. Can you tell me exactly how to set up Ghostscript with PB so that PB will see it as a printer/driver to use? We are using older (2006) G.S. dll in another old box but it does not show up as a printer/driver, they are calling the .dll specifically in a .Net/C# script. Thanks.
Chris is right.
We do this all the time. Each invoice page is a single DW, but the invoice we generate contains multiple pages all inside on PDF.
Works like a charm with Ghostscript.
Olan
Hi Aliaksei;
Its pretty easy to do using GHostScript. You just need to perform the multiple DWO in one PDF generation by using one print job ... for example:
long ll_job
ll_job = PrintOpen( )
PrintDataWindow(ll_job , dw_one)
PrintDataWindow(ll_job , dw_two)
...
PrintDataWindow(ll_job , dw_nnn)
PrintClose(ll_job)
The second alternative is to place the 2+ DWO's in one Nested or Composite parent DWO and just print that. This approach will work with either the GhostScript or NativePDF feature.
The third alternative is to create one PDF per DWO and then "stitch" the single PDF's into one.
FYI: https://www.pdflabs.com/tools/pdftk-the-pdf-toolkit/
HTH
Regards ... Chris