Re: [iText-questions] Print Dialog

2009-04-04 Thread vijay
Hi, So, does it now open the Print dialog? Is it Silent printing dependent upon the Acrobat Reader's version? I actually want the Print Dialog to open. Yes its not a web application. Yes, I am not using Adobe. So, the Silent Printing code should work in Windows and with Adobe Acrobat Reader? I

Re: [iText-questions] Print Dialog

2009-04-04 Thread vijay
Does the Silent Printing open a Print dialog or does it directly print. I have a ubuntu system and it did nothing. I am actually generating a PDF file at runtime and then I need to show the Print dialog. Is there a way to show the Print Dialog where the user can click Print or Cancel. Its wri

Re: [iText-questions] Print Dialog

2009-03-31 Thread 1T3XT info
vijay wrote: > But iText seems to do all except the Print Dialog thing. Either you use JavaScript to trigger the menu button that opens the menu button. In the following example, you find out how to open the SaveAs and Send as mail dialog boxes: http://1t3xt.be/?X64 Adapting it to open the p

[iText-questions] Print Dialog

2009-03-30 Thread vijay
Hello, I have an application where I need to open up the Windows Print dialog so that the user can print the pdf file generated. I was trying out various PDF generation APIs like Jasper. In Jasper, there's one class (I guess JasperManager) which has a printReport method which opens up the Prin

Re: [iText-questions] Print dialog

2005-07-27 Thread Chris Wilson
Hi Paulo, PdfWriter writer = ...; writer.setOpenAction(new PdfAction(PdfAction.PRINTDIALOG)); That's really useful, thanks! Could it be added to the examples documentation please? (alongside the javascript auto print example). Cheers, Chris. -- _ ___ __ _ / __/ / ,__(_)_ | Chris Wils

Re: [iText-questions] Print dialog

2005-07-27 Thread Paulo Soares
Yes: PdfWriter writer = ...; writer.setOpenAction(new PdfAction(PdfAction.PRINTDIALOG)); - Original Message - From: "Marek Scholaster" <[EMAIL PROTECTED]> To: Sent: Wednesday, July 27, 2005 10:28 AM Subject: [iText-questions] Print dialog > Hello, > I'm

[iText-questions] Print dialog

2005-07-27 Thread Marek Scholaster
Hello, I'm considering using pdf (and iText) to generate documents on our server. Before I start studying the internals I would like to know if the following is possible: - create pdf that when loaded into Adobe Reader will pop up a print dialog Thanks, Marek -