分享
 
 
 

用winspool取得本机安装的打印机的详细信息

王朝delphi·作者佚名  2006-01-08
窄屏简体版  字體: |||超大  

用winspool取得本机安装的打印机的详细信息

在Delphi 6 Professional version on Windows 2000 Professional环境下测试过

窗体的名字为"FPrint",有TMemo 和 TCombobox 两个控件

unit unit1;

interface

uses

Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,

Dialogs, StdCtrls, ExtCtrls, ComCtrls, TabEdit, Printers, Buttons, WinSpool;

type

TPrinterInfo = record

SeverName : PChar;

PrinterName : PChar;

ShareName : PChar;

PortName : PChar;

DriverName : PChar;

Comment : PChar;

Location : PChar;

DeviceMode : PDeviceModeA;

SepFile : PChar;

PrintProcessor : PChar;

DataType : PChar;

Parameters : PChar;

SecurityDescriptor: PSecurityDescriptor;

Attributes : Cardinal;

DefaultPriority : Cardinal;

StartTime : Cardinal;

UntilTime : Cardinal;

Status : Cardinal;

Jobs : Cardinal;

AveragePPM : Cardinal;

end;

TFPrint = class(TForm)

Memo1: TMemo;

ComboBox1: TComboBox;

procedure FormShow(Sender: TObject);

procedure ComboBox1Change(Sender: TObject);

private

{ Private declarations }

public

{ Public declarations }

end;

function GetCurrentPrinterInformation: TPrinterInfo;

function GetCurrentPrinterHandle: THandle;

var

FPrint: TFPrint;

implementation

{$R *.dfm}

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, nil) then

RaiseLastWin32Error;

end;

function GetCurrentPrinterInformation: TPrinterInfo;

var

hPrinter : THandle;

pInfo: PPrinterInfo2;

bytesNeeded: DWORD;

begin

hprinter := GetCurrentPrinterHandle;

try

Winspool.GetPrinter( hPrinter, 2, Nil, 0, @bytesNeeded );

pInfo := AllocMem( bytesNeeded );

try

Winspool.GetPrinter( hPrinter, 2, pInfo, bytesNeeded, @bytesNeeded );

Result.SeverName := pInfo^.pServerName;

Result.PrinterName := pInfo^.pPrinterName;

Result.ShareName := pInfo^.pShareName;

Result.PortName := pInfo^.pPortName;

Result.DriverName := pInfo^.pDriverName;

Result.Comment := pInfo^.pComment;

Result.Location := pInfo^.pLocation;

Result.DeviceMode := pInfo^.pDevMode;

Result.SepFile := pInfo^.pSepFile;

Result.PrintProcessor := pInfo^.pPrintProcessor;

Result.DataType := pInfo^.pDatatype;

Result.Parameters := pInfo^.pParameters;

Result.SecurityDescriptor := pInfo^.pSecurityDescriptor;

Result.Attributes := pInfo^.Attributes;

Result.DefaultPriority := pInfo^.DefaultPriority;

Result.StartTime := pInfo^.StartTime;

Result.UntilTime := pInfo^.UntilTime;

Result.Status := pInfo^.Status;

Result.Jobs := pInfo^.cJobs;

Result.AveragePPM := pInfo^.AveragePPM;

finally

FreeMem( pInfo );

end;

finally

ClosePrinter( hPrinter );

end;

end;

procedure TFPrint.FormShow(Sender: TObject);

begin

ComboBox1.Items.Assign(Printer.Printers);

ComboBox1.ItemIndex := 0;

ComboBox1.OnChange(nil);

end;

procedure TFPrint.ComboBox1Change(Sender: TObject);

var

PrinterInfo: TPrinterInfo;

begin

PrinterInfo := GetCurrentPrinterInformation;

memo1.Clear;

with memo1.Lines do

begin

Add('GENERAL INFORMATION');

Add('');

Add('ServerName: ' + PrinterInfo.SeverName);

Add('PrinterName: ' + PrinterInfo.PrinterName);

Add('ShareName: ' + PrinterInfo.ShareName);

Add('PortName: ' + PrinterInfo.PortName);

Add('DriverName: ' + PrinterInfo.DriverName);

Add('Comment: ' + PrinterInfo.Comment);

Add('Location: ' + PrinterInfo.Location);

Add('SepFile: ' + PrinterInfo.SepFile);

Add('PrintProcessor: ' + PrinterInfo.PrintProcessor);

Add('DataType: ' + PrinterInfo.DataType);

Add('Parameters: ' + PrinterInfo.Parameters);

Add('Attributes: ' + IntToStr(PrinterInfo.Attributes));

Add('DefaultPriority: ' + IntToStr(PrinterInfo.DefaultPriority));

Add('StartTime: ' + IntToStr(PrinterInfo.StartTime));

Add('UntilTime: ' + IntToStr(PrinterInfo.UntilTime));

Add('Status: ' + IntToStr(PrinterInfo.Status));

Add('Jobs: ' + IntToStr(PrinterInfo.Jobs));

Add('AveragePPM: ' + IntToStr(PrinterInfo.AveragePPM));

Add('');

Add('DEVICEMODE INFORMATION');

Add('');

Add('DeviceName: ' + PrinterInfo.DeviceMode.dmDeviceName);

Add('SpecVersion: ' + IntToStr(PrinterInfo.DeviceMode.dmSpecVersion));

Add('DriverVersion: ' + IntToStr(PrinterInfo.DeviceMode.dmDriverVersion));

Add('Size: ' + IntToStr(PrinterInfo.DeviceMode.dmSize));

Add('DriverExtra: ' + IntToStr(PrinterInfo.DeviceMode.dmDriverExtra));

Add('Fields: ' + IntToStr(PrinterInfo.DeviceMode.dmFields));

Add('Orientation: ' + IntToStr(PrinterInfo.DeviceMode.dmOrientation));

Add('PaperSize: ' + IntToStr(PrinterInfo.DeviceMode.dmPaperSize));

Add('PaperLength: ' + IntToStr(PrinterInfo.DeviceMode.dmPaperLength));

Add('PaperWidth: ' + IntToStr(PrinterInfo.DeviceMode.dmPaperWidth));

Add('Scale: ' + IntToStr(PrinterInfo.DeviceMode.dmScale));

Add('Copies: ' + IntToStr(PrinterInfo.DeviceMode.dmCopies));

Add('DefaultSource: ' + IntToStr(PrinterInfo.DeviceMode.dmDefaultSource));

Add('PrintQuality: ' + IntToStr(PrinterInfo.DeviceMode.dmPrintQuality));

Add('Color: ' + IntToStr(PrinterInfo.DeviceMode.dmColor));

Add('Duplex: ' + IntToStr(PrinterInfo.DeviceMode.dmDuplex));

Add('YResolution: ' + IntToStr(PrinterInfo.DeviceMode.dmYResolution));

Add('TTOption: ' + IntToStr(PrinterInfo.DeviceMode.dmTTOption));

Add('Collate: ' + IntToStr(PrinterInfo.DeviceMode.dmCollate));

Add('LogPixels: ' + IntToStr(PrinterInfo.DeviceMode.dmLogPixels));

Add('BitsPerPel: ' + IntToStr(PrinterInfo.DeviceMode.dmBitsPerPel));

Add('PelsWidth: ' + IntToStr(PrinterInfo.DeviceMode.dmPelsWidth));

Add('PelsHeight: ' + IntToStr(PrinterInfo.DeviceMode.dmPelsHeight));

Add('DisplayFlags: ' + IntToStr(PrinterInfo.DeviceMode.dmDisplayFlags));

Add('DisplayFrequency: ' + IntToStr(PrinterInfo.DeviceMode.dmDisplayFrequency));

Add('ICMMethod: ' + IntToStr(PrinterInfo.DeviceMode.dmICMMethod));

Add('ICMintent: ' + IntToStr(PrinterInfo.DeviceMode.dmICMIntent));

Add('MediaType: ' + IntToStr(PrinterInfo.DeviceMode.dmMediaType));

Add('DitherType: ' + IntToStr(PrinterInfo.DeviceMode.dmDitherType));

Add('ICCManufacturer: ' + IntToStr(PrinterInfo.DeviceMode.dmICCManufacturer));

Add('ICCModel: ' + IntToStr(PrinterInfo.DeviceMode.dmICCModel));

Add('PanningWidth: ' + IntToStr(PrinterInfo.DeviceMode.dmPanningWidth));

Add('PanningHeight: ' + IntToStr(PrinterInfo.DeviceMode.dmPanningHeight));

end;

end;

end.

//rock

//转载请保留此信息

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有