Delphi implements methods for detecting and enumerating system-installed printers _delphi

Source: Internet
Author: User

This paper illustrates the implementation method of Delphi printing program with an example. This example can detect all the printers installed in the system, cite these printers, the main function code is very simple, easy to read and understand.

The main functional code is as follows:

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 (' No printer installed! ');
 End;
End;

Procedure Tform1.button2click (sender:tobject);
Begin close
 ;
End;

End.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.