In the standard PrintDialog there are four values associated with a selected printer: Status, Type, Where, and Comment.
If I know a printer's name, how can I get these values in C# 2.0?
|
In the standard PrintDialog there are four values associated with a selected printer: Status, Type, Where, and Comment. If I know a printer's name, how can I get these values in C# 2.0? |
||||
|
|
|
As dowski suggested, you could use WMI to get printer properties. The following code displays all properties for a given printer name. Among them you will find: PrinterStatus, Comment, Location, DriverName, PortName, etc.
...
|
|||||||||
|
|
This should work.
...
After that, the various properties of PrinterSettings can be read. Note that Edit: One additional comment. Microsoft recommends you use a PrintDocument and modify its PrinterSettings rather than creating a PrinterSettings directly. |
|||||
|
|
Please notice that the article that dowski and Panos was reffering to (MSDN Win32_Printer) can be a little misleading. I'm referring the first value of most of the arrays. some begins with 1 and some begins with 0. for example, "ExtendedPrinterStatus" first value in table is 1, therefore, your array should be something like this:
and on the other hand, "ErrorState" first value in table is 0, therefore, your array should be something like this:
BTW, "PrinterState" is obsolete, but you can use "PrinterStatus". |
|||
|
|
|
Just for reference, here is a list of all the available properties for a printer ManagementObject.
|
||||
|
|
|
It's been a long time since I've worked in a Windows environment, but I would suggest that you look at using WMI. |
|||
|
|
|
As an alternative to WMI you can get fast accurate results by tapping in to WinSpool.drv (i.e. Windows API) - you can get all the details on the interfaces, structs & constants from pinvoke.net, or I've put the code together at http://delradiesdev.blogspot.com/2012/02/accessing-printer-status-using-winspool.html |
|||
|
|