Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Network printers and the PrintServer.GetPrintQueues method

I have a feeling that the PrintServer.GetPrintQueues method does not return the network printers.

If this one is true, what other choices do i have?

like image 487
OrElse Avatar asked Mar 19 '10 09:03

OrElse


1 Answers

After a lot of Googling the GetPrintQueues method do return the network printers too with aid of EnumeratedPrintQueueTypes()

Private enumerationFlags As EnumeratedPrintQueueTypes() = {EnumeratedPrintQueueTypes.Local, EnumeratedPrintQueueTypes.Connections}

More information can be found here

like image 140
OrElse Avatar answered Sep 24 '22 00:09

OrElse