Supress Print Status Box?

  • Thread starter Thread starter Rob T
  • Start date Start date
R

Rob T

I have a little app that monitors a database and then prints various
reports. Everything works fine except that it pops up the little status
window that says "Printing 1 or 2..", then goes away. It's quite annoying.
Is there a way to suppress this box?

Thanks.

-- Rob T.
 
Hi,

The printdocuments printcontroller display that window. Try
this

PrintDocument1.PrintController = New
System.Drawing.Printing.StandardPrintController

http://msdn.microsoft.com/library/d...ingprintdocumentclassprintcontrollertopic.asp


Ken
------------------
I have a little app that monitors a database and then prints various
reports. Everything works fine except that it pops up the little status
window that says "Printing 1 or 2..", then goes away. It's quite annoying.
Is there a way to suppress this box?

Thanks.

-- Rob T.
 
Back
Top