An alternative method would be to programmatically create a pdf document / s, which you then print using CommandLine
Take a look at the iText library.
Once you have created your files, you can print them through the command line (you can use the Command class found in the System.Diagnostics namespace)
If you are doing all this from a package, then you will also want to be notified (possibly programmatically) if something goes wrong with the print queue that you are printing to. I believe there is a class for this.
For more information on this, try here .
Todd Richardson Dec 16 '10 at 19:19 2010-12-16 19:19
source share