[iText-questions] Re: Silent Printing of PDF

2006-05-08 Thread Carsten Hammer
lpr is part of itext. It has the advantage of providing fine grained control of the printer parameters on suitable printers. Best regards, Carsten Swati das schrieb: Thanks for your response. Actually I need to send this print through the Java code. Can I execute lpr though Java? */Udo Rader

[iText-questions] Re: Silent Printing

2004-11-17 Thread Gaurav
Hi, We are using Lexmark T630 printers. It has three trays & I want to always print from Tray 3. I got the reference manual for the Printer, please see the link below. I am not sure myself what I should be looking for; if you could help I would really appreciate this. http://www.lexmark.com/publi

[iText-questions] Re: Silent Printing

2004-11-17 Thread Gaurav
Guys, Thanks for your suggestions. I was able to make it work by adding the following serverside code. document.open() PdfAction jAction = PdfAction.javaScript("this.print(false);\r", writer); writer.addJavaScript(jAction); Follow up Question(Requirement for our project): I want to make Printer

Re: [iText-questions] Re: Silent Printing

2004-11-17 Thread Leonard Rosenthol
At 06:10 PM 11/16/2004, Gaurav wrote: Thanks for the response Carsten. I am not sure I understood what you meant. I want to basically print out the PDF document (which is diaplayed in the jsp page) by clicking on the Print button in the PDF Header. My question is very basic how will i capture the o

[iText-questions] Re: Silent Printing

2004-11-17 Thread Gaurav
Thanks for the response Carsten. I am not sure I understood what you meant. I want to basically print out the PDF document (which is diaplayed in the jsp page) by clicking on the Print button in the PDF Header. My question is very basic how will i capture the onClick event of the PDF document &

[iText-questions] Re: Silent Printing

2004-11-16 Thread Carsten Hammer
Hi, I do it with a modified version of http://www.hemasoft.de/dev/lprj/ Of course it is neccessary then to spool it in to something that is able to handle pdf. Best regards, Carsten Gaurav schrieb: Hi, Let me start with Great Product & seamless integration into the project!!! My question is af