I use Visual Basic 8.0 and Windows 7 Prof. and Deskjet 720c
To print a document i use PrintDocument component
I want to Check status of local printer
My problem is, if de printer if offline of not connected every print job is then automatically sent to the print spooler of Deskjet 720c.
I try to use Try Catch, But this does not work I get no error message

Try

PrintDocument1.Print()

Catch ex As Exception  'catch printing exception  

         MessageBox.Show("Sorry--there is a problem printing",  ex.ToString())  


Finally
  beep
End Try

Who can help me with this?

Previsously thanks,

Andre

The print queue (spooler) is always ready to receive and enqueue new print jobs. This is a standard feature of Windows and almost all other current Operating systems.

When the printer goes on line, all the print jobs in the queue are printed.

If you want to warn the user about the status of the printer then you need to go down to the API

Try to start reading the http://www.thedbcommunity.com/index.php?option=com_content&task=view&id=218&Itemid=56.
Is based on Paradox Db, but all the principes, structures and howtos are valid to be used in Vb.net

Hope this helps

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.