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