Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Merging Print Jobs

Status
Not open for further replies.

apc2004

Programmer
Aug 23, 2005
38
GB
OS Version: Windows 2000/XP

The Problem:
We need to print multiple print jobs.
These need to be merged in some way so that the printer the application will be used with can staple ALL the print jobs into one document at the end of print.

The issue is without merging the print jobs the printer staples each print job into their own document at the end of printing.

Does anyone know how via code we can merge the seperate print jobs into one?

Thanks in advance... =D
 
what kind of print jobs are you printing? Documents? Images? Webpages?
 
Use a commercial product: activPDF Toolkit, a COM object with a .NET wrapper that will merge PDFs (and lots of other things).

Or, output PostScript files instead, which can be concatenated by inserting the PostScript statement "false 0 startjob pop" between concatenated PostScript files.

You can also insert device control statements in PostScript, to turn stapling and other features on or off.



Thomas D. Greer

Providing PostScript & PDF
Training, Development & Consulting
 
Thanks for the reply...

Will investigate your suggestions further tomorrow when I'm back at work.

Thanks again... =D
 
Investigated ActivePDF...

Works great for merging Exported To PDF Crystal Reports, BUT and there is always a but... =)

I can't programatically print the merged report pdf.

I can however print via a shell execute but this is not an option.

Any suggestions as to how I can print the merged pdf?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top