473,529 Members | 2,258 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Not possible to get printer status with c#.net?

I am told by an experienced c#.net programmer that it is not possible
to get the code to get a printers status. I've been hammering on this
for a week and have combed through hp's web sites and google and
microsoft...nothing for c#. If anyone has a solution, I would
appreciate knowing.
Thanks,
Trint

Nov 16 '05 #1
7 28752
This is a function for a printer driver. When you print to a spooler it is
not relevant whether the printer hardware is ready or not.

If you are bypassing the spooler and going direct to hardware for some
reason, then you are probably talking about a Win32 API call that you would
make from C# via P/Invoke.

--Bob

"trint" <tr***********@gmail.com> wrote in message
news:11**********************@c13g2000cwb.googlegr oups.com...
I am told by an experienced c#.net programmer that it is not possible
to get the code to get a printers status. I've been hammering on this
for a week and have combed through hp's web sites and google and
microsoft...nothing for c#. If anyone has a solution, I would
appreciate knowing.
Thanks,
Trint

Nov 16 '05 #2
In general the printer status can be queried using System.Management and
WMI.

Willy.

"trint" <tr***********@gmail.com> wrote in message
news:11**********************@c13g2000cwb.googlegr oups.com...
I am told by an experienced c#.net programmer that it is not possible
to get the code to get a printers status. I've been hammering on this
for a week and have combed through hp's web sites and google and
microsoft...nothing for c#. If anyone has a solution, I would
appreciate knowing.
Thanks,
Trint

Nov 16 '05 #3

"trint" <tr***********@gmail.com> wrote in message
news:11**********************@c13g2000cwb.googlegr oups.com...
I am told by an experienced c#.net programmer that it is not possible
to get the code to get a printers status. I've been hammering on this
for a week and have combed through hp's web sites and google and
microsoft...nothing for c#. If anyone has a solution, I would
appreciate knowing.
Thanks,
Trint

Here is how:

using System;
using System.Management;
enum PrinterStatus {
Other = 1,
Unknown,
Idle,
Printing,
Warmup,
Stopped,
printing,
Offline
}

public class Wmis {
public static void Main() {
PrinterStatus stat;
if ((stat = GetPrinterStat("\\\\server\\printername")) != 0) // UNC or a
local name
{
Console.WriteLine(stat);
}
else
Console.WriteLine("Failed to get status");
}
static PrinterStatus GetPrinterStat(string printerDevice)
{
PrinterStatus ret = 0;
string path = "win32_printer.DeviceId='" + printerDevice + "'";
using (ManagementObject printer = new ManagementObject(path))
{
printer.Get();
PropertyDataCollection printerProperties = printer.Properties;
PrinterStatus st =
(PrinterStatus)Convert.ToInt32(printer.Properties["PrinterStatus"].Value);
ret = st;
}
return ret;
}
}
Willy.
Nov 16 '05 #4
I will try this...
Thanks,
Trint

Nov 16 '05 #5
Willy,
How can I make listBox1 visible? I changed your code slightly from:
if ((stat = GetPrinterStat("\\\\server\\printername")) != 0)
{
Console.WriteLine(stat);
}
To:
{
Form1.listBox1.Items.Add(stat);
}
so that I can get the error messages back in windows, but I get this
error message at compile:
'GetPrinterStatus1.Form1.listBox1' is inaccessible due to its
protection level
How do I change the listBox's protection level?
Thanks,
Trint

Nov 16 '05 #6
Ok,
Here is the fix to make it work in Windows:

public class Form1 : System.Windows.Forms.Form
{
....
protected System.Windows.Forms.ListBox listBox1;
....
....
public class Wmis: Form1
{
....
....
Wmis f1 = new Wmis();
f1.listBox1.Items.Add(stat);

The only thing is, I wish that I could get error codes like 'tray 2
empty' or 'tray 3 empty' or 'out of toner'.
Any suggestions?
Thanks,
Trint


trint wrote:
Willy,
How can I make listBox1 visible? I changed your code slightly from:
if ((stat = GetPrinterStat("\\\\server\\printername")) != 0)
{
Console.WriteLine(stat);
}
To:
{
Form1.listBox1.Items.Add(stat);
}
so that I can get the error messages back in windows, but I get this
error message at compile:
'GetPrinterStatus1.Form1.listBox1' is inaccessible due to its
protection level
How do I change the listBox's protection level?
Thanks,
Trint


Nov 16 '05 #7
Check the WMI info in MSDN. The class to search for is win32_printer.
Some printer manufactures supply printer drivers that fill the
ExtendedPrinterStatus, DetectErrorState and ExtendedDetectErrorState
property, some don't care at all about WMI.

Willy.
"trint" <tr***********@gmail.com> wrote in message
news:11*********************@c13g2000cwb.googlegro ups.com...
Ok,
Here is the fix to make it work in Windows:

public class Form1 : System.Windows.Forms.Form
{
...
protected System.Windows.Forms.ListBox listBox1;
...
...
public class Wmis: Form1
{
...
...
Wmis f1 = new Wmis();
f1.listBox1.Items.Add(stat);

The only thing is, I wish that I could get error codes like 'tray 2
empty' or 'tray 3 empty' or 'out of toner'.
Any suggestions?
Thanks,
Trint


trint wrote:
Willy,
How can I make listBox1 visible? I changed your code slightly from:
if ((stat = GetPrinterStat("\\\\server\\printername")) != 0)
{
Console.WriteLine(stat);
}
To:
{
Form1.listBox1.Items.Add(stat);
}
so that I can get the error messages back in windows, but I get this
error message at compile:
'GetPrinterStatus1.Form1.listBox1' is inaccessible due to its
protection level
How do I change the listBox's protection level?
Thanks,
Trint

Nov 16 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
4280
by: Jim Warner | last post by:
I am having problems using Borland 5.02 C/C++ for testing printer status repeatly. I wish to use my printer to detect off-line, removing paper, and so on with my software. I have tried using bio_print, bios_printer, and bio_serialcom but my program cannot detect it. I am using Windows XP and I have read that these functions can't be used...
0
1878
by: Gordon Truslove | last post by:
I've been trying to get the printer status using GetPrinter and Printer_Info_2 I'm getting closer, but it still fails. Error 122 - The data area passed to a system call is too small. public struct PRINTERINFO2
3
10027
by: Gordon Truslove | last post by:
I've been trying to get the printer status using GetPrinter and Printer_Info_2 I'm getting closer, but it still fails. Error 122 - The data area passed to a system call is too small. --------------------------------------------------------------- public struct PRINTERINFO2
0
2299
by: cortukmehmet | last post by:
I wrote this code to check the status of printer.But it says "Unknown" as printer. ///////////////////////////////////////////////////////////////////////////// System.Management.ManagementObjectCollection printers = new System.Management.ManagementClass("Win32_Printer").GetInstances(); foreach(System.Management.ManagementObject printer...
1
18129
by: Vanessa | last post by:
Hi, I'm trying to select a printer in the system printers collection. I'm able to do this. However, if the printer is a network printer and happens that this printer is not on or not ready, I won't be able to know and I try to print a document I will get an error. Is there anyway that I can check the status for the printer that the user...
6
2380
by: Pipo | last post by:
Hi, Does anyone know how I can read out the printer status? I want to sent a bulk of documents to the printer (or 1 by 1) but if something goes wrong e.g. out of paper, cartridge empty, tray open,etc I would like to get an exception back. Is this possible? tia
2
4222
by: TARUN | last post by:
Hello all, Please help and suggest the code to get the printer status over the network. for Example, i have an string "\\\\os1\\PtName" where os1 is the system name and PtName is the printer name I need to know the status of this printer on the system name "os1".
9
10228
by: id10t error | last post by:
Hello, I am going to be using a Symbol WT4090 to scan items. I need to printer a tag from the Zebra ql320 plus. I am trying to do this is Visual basic 2005. Does anyone know and good site to find out how to do this. I have looked everywhere i know with no luck. Thank you in advance for your help.
1
4192
by: Steve | last post by:
Hi All I am using vb.net 2005 in a windows forms application I send data to the selected windows printer using a PrintDocument object Is there any way to detect if the Printer is not responding e.g turned off, out of paper etc, via code I want to display a warning if the printer needs attention rather than just
0
7344
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7267
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
7505
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
0
7670
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
0
7613
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
1
5197
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
3330
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
901
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
566
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.