Search found 2 matches

by Shura
Tue Mar 23 2004
Forum: Amyuni PDF Creator ActiveX (PDF Viewer / Editor)
Topic: creating several print jobs using PDF Creator
Replies: 2
Views: 6881

Yes, first job printed successfully and second job even doesn't appears in the print spooler. Next code works great: var PDF:Variant; I:Integer; begin Pdf := CreateOleObject('PDFCreactiveX.PDFCreactiveX'); pdf.Open('1.pdf', ''); Pdf.StartPrint('HPLJ1100', false); for I := 1 to Pdf.PageCount do begin...
by Shura
Thu Mar 18 2004
Forum: Amyuni PDF Creator ActiveX (PDF Viewer / Editor)
Topic: creating several print jobs using PDF Creator
Replies: 2
Views: 6881

creating several print jobs using PDF Creator

Hi! I use PDFCreactiveX.dll Version 1.09b I want to create print job for each printed file. Below is a Delphi code for this : var PDF:Variant; I:Integer; begin Pdf := CreateOleObject('PDFCreactiveX.PDFCreactiveX'); pdf.Open('1.pdf', ''); Pdf.StartPrint('HPLJ1100', false); for I := 1 to Pdf.PageCount...