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
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
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
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
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
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
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
-