How can I discard Dialog "Page x of document" shown after printing each page of a multi page document?
The tiltle bar of the Dialog is "Printing" and is shown after printing each
page of the document.
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
NickPosted Jul 15, 2009, 11:44 PM
I think you mean the PrinterController. By default it is the PrintControllerWithStatusDialog.
If you don't want the status Dialog you could use:
myPrintDocument.PrintController = new StandardPrintController();
or you could give the statusdialog another title :
myPrintDocument.PrintControler = new PrintControllerWithStatusDialog(new StandardPrintController(), "My Title")
nick