whats new ¦  programming tips ¦  indy articles ¦  intraweb articles ¦  informations ¦  links ¦  interviews
 misc ¦  tutorials ¦  Add&Win Game

Tips (1541)

Database (90)
Files (137)
Forms (107)
Graphic (114)
IDE (21)
Indy (5)
Internet / LAN (130)
IntraWeb (0)
Math (76)
Misc (126)
Multimedia (45)
Objects/
ActiveX (51)

OpenTools API (3)
Printing (35)
Strings (83)
System (266)
VCL (242)

Top15

Tips sort by
component


Search Tip

Add new Tip

Add&Win Game

Advertising

62 Visitors Online


 
...list print-jobs in a printer-queue?
Autor: P. Below
Homepage: http://www.teamb.com
[ Print tip ]  

Tip Rating (21):  
     


uses
  
Winspool, Printers;

function GetCurrentPrinterHandle: THandle;
var
  
Device, Driver, Port: array[0..255] of Char;
  hDeviceMode: THandle;
begin
  
Printer.GetPrinter(Device, Driver, Port, hDeviceMode);
  if not OpenPrinter(@Device, Result, nilthen
    
RaiseLastWin32Error;
end;

function SavePChar(p: PChar): PChar;
const
  
error: PChar = 'Nil';
begin
  if not 
Assigned(p) then
    
Result := error
  else
    
Result := p;
end;

procedure TForm1.Button1Click(Sender: TObject);
type
  
TJobs  = array [0..1000] of JOB_INFO_1;
  PJobs = ^TJobs;
var
  
hPrinter: THandle;
  bytesNeeded, numJobs, i: Cardinal;
  pJ: PJobs;
begin
  
hPrinter := GetCurrentPrinterHandle;
  try
    
EnumJobs(hPrinter, 0, 1000, 1, nil, 0, bytesNeeded,
      numJobs);
    pJ := AllocMem(bytesNeeded);
    if not EnumJobs(hPrinter, 0, 1000, 1, pJ, bytesNeeded,
      bytesNeeded, numJobs) then
      
RaiseLastWin32Error;

    memo1.Clear;
    if numJobs = 0 then
      
memo1.Lines.Add('No jobs in queue')
    else
      for 
i := 0 to Pred(numJobs) do
        
memo1.Lines.Add(Format('Printer %s, Job %s, Status (%d): %s',
          [SavePChar(pJ^[i].pPrinterName), SavePChar(pJ^[i].pDocument),
          pJ^[i].Status, SavePChar(pJ^[i].pStatus)]));
  finally
    
ClosePrinter(hPrinter);
  end;
end;


 

Rate this tip:

poor
very good


Copyright © by SwissDelphiCenter.ch
All trademarks are the sole property of their respective owners