手机
当前位置:查字典教程网 >编程开发 >Delphi >Delphi实现检测并枚举系统安装的打印机的方法
Delphi实现检测并枚举系统安装的打印机的方法
摘要:本文以实例说明Delphi打印程序的实现方法。该实例可以检测系统中安装的所有打印机,枚举出这些打印机,主要功能代码非常简单,便于大家阅读与理...

本文以实例说明Delphi打印程序的实现方法。该实例可以检测系统中安装的所有打印机,枚举出这些打印机,主要功能代码非常简单,便于大家阅读与理解。

主要功能代码如下:

unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls,Printers, XPMan; type TForm1 = class(TForm) Button1: TButton; GroupBox1: TGroupBox; Memo1: TMemo; Button2: TButton; procedure Button1Click(Sender: TObject); procedure Button2Click(Sender: TObject); private { Private declarations } public { Public declarations } end; var Form1: TForm1; implementation {$R *.dfm} procedure TForm1.Button1Click(Sender: TObject); begin Memo1.Clear; memo1.Lines.Assign(Printer.Printers); if trim(memo1.Text) = '' then begin showmessage('没有安装打印机!'); end; end; procedure TForm1.Button2Click(Sender: TObject); begin Close; end; end.

【Delphi实现检测并枚举系统安装的打印机的方法】相关文章:

Delphi实现毫秒级别的倒计时实例代码

Delphi用TActionList实现下载文件的方法

delphi建立、读取、存贮INI文件的方法《三》

Delphi下OpenGL2d绘图之画点的方法

delphi制作wav文件的方法

Delphi实现Listbox中的item根据内容显示不同颜色的方法

Delphi控件ListView的属性及使用方法详解

Delphi下OpenGL2d绘图之画四边形的方法

Delphi创建开机启动项的方法示例

Delphi实现获取磁盘空间大小的方法

精品推荐
分类导航