print queue details for local printer

  • Thread starter Thread starter kishore kumar via DotNetMonster.com
  • Start date Start date
K

kishore kumar via DotNetMonster.com

hi
I want to know the print queue details for local printer
and how many jobs r there in print queue.

plz help me
 
kishore kumar via DotNetMonster.com said:
I want to know the print queue details for local printer
and how many jobs r there in print queue.

I'm not if you are asking for a .Net solution or not.

If you are doing native development then EnumPrinters() will list the
printers on a box, OpenPrinter() can get a handle to a printer from its
name, and EnumJobs() should be able to list the jobs in a printer's queue.

Regards,
Will
 
Back
Top