473,804 Members | 3,494 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...not hing for c#. If anyone has a solution, I would
appreciate knowing.
Thanks,
Trint

Nov 16 '05 #1
7 28775
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.goo glegroups.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...not hing 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.Manageme nt and
WMI.

Willy.

"trint" <tr***********@ gmail.com> wrote in message
news:11******** **************@ c13g2000cwb.goo glegroups.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...not hing 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.goo glegroups.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...not hing for c#. If anyone has a solution, I would
appreciate knowing.
Thanks,
Trint

Here is how:

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

public class Wmis {
public static void Main() {
PrinterStatus stat;
if ((stat = GetPrinterStat( "\\\\server\\pr intername")) != 0) // UNC or a
local name
{
Console.WriteLi ne(stat);
}
else
Console.WriteLi ne("Failed to get status");
}
static PrinterStatus GetPrinterStat( string printerDevice)
{
PrinterStatus ret = 0;
string path = "win32_printer. DeviceId='" + printerDevice + "'";
using (ManagementObje ct printer = new ManagementObjec t(path))
{
printer.Get();
PropertyDataCol lection printerProperti es = printer.Propert ies;
PrinterStatus st =
(PrinterStatus) Convert.ToInt32 (printer.Proper ties["PrinterSta tus"].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\\pr intername")) != 0)
{
Console.WriteLi ne(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:
'GetPrinterStat us1.Form1.listB ox1' 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.Ite ms.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\\pr intername")) != 0)
{
Console.WriteLi ne(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:
'GetPrinterStat us1.Form1.listB ox1' 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
ExtendedPrinter Status, DetectErrorStat e and ExtendedDetectE rrorState
property, some don't care at all about WMI.

Willy.
"trint" <tr***********@ gmail.com> wrote in message
news:11******** *************@c 13g2000cwb.goog legroups.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.Ite ms.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\\pr intername")) != 0)
{
Console.WriteLi ne(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:
'GetPrinterStat us1.Form1.listB ox1' 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
4306
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 since Windows 98 operating system will not support the functions. Can you help show a simple program...
0
1918
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
10067
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
2364
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 in printers) {
1
18189
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 select is ready or not?
6
2403
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
4245
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
10372
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
4230
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
9572
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 synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10562
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. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10319
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 captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10303
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10070
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 choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7608
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 instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6845
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5639
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
2978
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 effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.