Need to disable "Print progress" popup dialog

  • Thread starter Thread starter Michael W.
  • Start date Start date
M

Michael W.

have an app that does batch printing.

The Dialog telling me which page is being printed keeps poping up.

It's very annoying!! Any way to disable it??

Thanks in advance.
 
Michael,

Michael W. said:
have an app that does batch printing.

The Dialog telling me which page is being printed keeps poping up.

If you are using .NET 1.1, you can set the 'PrintDocument' object's
'PrintController' property to a new instance of
'System.Drawing.Printing.StandardPrintController'.
 
Outstanding response. I didn't know that.

Herfried K. Wagner said:
Michael,



If you are using .NET 1.1, you can set the 'PrintDocument' object's
'PrintController' property to a new instance of
'System.Drawing.Printing.StandardPrintController'.
 
Does anyone know how to do this w/ the PrintPreviewDialog, or better yet the
PrintPreviewControl? I've tried setting the printDocument's printController
to a standard and preview printController, but the status box still appears.

Thanks,

Davis
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top