Delphi实现检测并枚举系统安装的打印机 Delphi实现检测并枚举系统安装的打印机的方法

软件发布|下载排行|最新软件

当前位置:首页IT学院IT技术

Delphi实现检测并枚举系统安装的打印机 Delphi实现检测并枚举系统安装的打印机的方法

  2021-03-19 我要评论
想了解Delphi实现检测并枚举系统安装的打印机的方法的相关内容吗,在本文为您仔细讲解Delphi实现检测并枚举系统安装的打印机的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点: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.

猜您喜欢

Copyright 2022 版权所有 软件发布 访问手机版

声明:所有软件和文章来自软件开发商或者作者 如有异议 请与本站联系 联系我们