delphi3000.com - the free delphi knowledge platform
delphi3000.com - the free delphi knowledge platform
500 Users Online NOW
Have a look at your member-status

connecting people's knowledge


  - Recent ArticlesRSS feed for Recent Articles on delphi3000.com
  - List of All Articles
  - Top Viewed Articles
  - Articles (+Attachem.)
  - Articles Of Interest
  - Categories
  - Top Uploader
  - Search
  - Index

  - My Home
  - Submit an Article
  - My Articles
  - My Personal Data
  - My Bookmarks
  - Activities
  - Login/Logout

  - Sign Up
  - Why Sign Up
  - Newsletter

  - Press
  - Advertise

  - Contact
  - Feedback





Community
Borland
ClubeDelphi
Dr. Bob
UK-BUG
Delphi Meetings
Planeta Delphi



Loremo - the 1.5 liter car coming in 2009




Startblatt.de






Share this article with friendsShare this article with friends
Rate this articleRate this article - to keep the quality of delphi3000.com !
Comment this article or read through previous comments (1)


Get the Number of Printer JobsFormat this article printer-friendly!Bookmark function is only available for registered users!
Product:
Delphi 2.x
Category:
Win API
Skill Level:
Scoring:
Last Update:
05/27/2002
Search Keys:
delphi delphi3000 article borland vcl code-snippet OpenPrinter GetPrinter ClosePrinter PrinterInfo2 EPrinter SysErrorMessage GetLastError
Times Scored:
3
Visits:
2818
Uploader: Andreas Schmidt
Company:
Reference: N/A
 
Question/Problem/Abstract:
How to get the number of jobs in the windows spooler for a
specific printer.

You may want your Application to limit the number of jobs in the spooler to avoid the loss of data.
Answer:




uses Windows, SysUtils, Printers, WinSpool;

{**************************************************************************
* NAME:    PrinterJobsCount
* DESC:    Get the number of jobs in the windows printer spooler
* PARAMS:  PrinterName
* RESULT:  Number of printer jobs
* CREATED: 27-05-2002/Andreas Schmidt
*************************************************************************}
function PrinterJobsCount(const PrinterName : String) : Integer;
var
   hPrinter   : THandle;
   PPI2       : PPrinterInfo2;
   dwNeeded : DWORD;
begin
   Result := -1;

   // open the printer
   if NOT OpenPrinter(PChar(PrinterName), hPrinter, Nil) then
      raise EPrinter.Create('Can''t open printer: '+PrinterName+
         #13+SysErrorMessage(GetLastError));

   try
      // just get the amount of needed memory
      GetPrinter(hPrinter, 2, Nil, 0, @dwNeeded);

      // allocate the memory
      GetMem(PPI2, dwNeeded);
      try
         // get the printer information
         if NOT GetPrinter(
            hPrinter,    // handle to printer
            2,           // information level
            PPI2,        // printer information buffer
            dwNeeded,     // size of buffer
            @dwNeeded    // bytes received or required
            )
          then
            raise EPrinter.Create('Error getting information for printer: '+
               PrinterName+#13+SysErrorMessage(GetLastError));

         Result := PPI2^.cJobs;
      finally
         FreeMem(PPI2);
      end;
   finally
      ClosePrinter(hPrinter);
   end;
end;





Please rate this article!
Skill level:
BeginnerExpert

Useful:
No!Very!

Overall rating:
PoorExcellent



Comments to this article
Write a new comment
There is more on this.
    Abdulaziz Jasser (May 27 2002 8:09PM)

You can find more on this here:

http://www.delphi3000.com/articles/article_1699.asp
Respond














 
Sign up to consume product discounts for Bronze memberships !

read more


  Visit our Sponsor

 

  Community Ad of
D. Wischnewski
 
   














 







     
  Copyright © 2000 - 2007 delphi3000.com - All rights reserved. Terms of use. || Privacy
delphi3000.com is a service by bluestep.com IT-Services GmbH (Vienna)