Hi,
I am using the AnnotatedPdfPrintDocument class to print pdf documents.
I have the option to print with a print dialog or print without the dialog.
When I print with out the printDialog, I do not want to display the print progress status popup that displays the page being printed.
Is there a way to disable this pop from showing?
Thanks
Harlan
Suppress print progress popup
Moderator: Alex
-
- Site Admin
- Posts: 2397
- Joined: Thu Jul 10, 2008 2:21 pm
Re: Suppress print progress popup
Hi Harlan,
For suppressing the print progress popup you need to change the print controller in PDF print document:
Best regards, Alexander
For suppressing the print progress popup you need to change the print controller in PDF print document:
Code: Select all
annotatedPdfPrintDocument.PrintController = new System.Drawing.Printing.StandardPrintController();
-
- Posts: 85
- Joined: Fri Jan 24, 2020 3:37 am
Re: Suppress print progress popup
That works
Thanks for the quick reply
Thanks for the quick reply