⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 expndx0.pas

📁 delphi RS232 计算机串口通讯源程序
💻 PAS
字号:
(***** BEGIN LICENSE BLOCK *****
 * Version: MPL 1.1
 *
 * The contents of this file are subject to the Mozilla Public License Version
 * 1.1 (the "License"); you may not use this file except in compliance with
 * the License. You may obtain a copy of the License at
 * http://www.mozilla.org/MPL/
 *
 * Software distributed under the License is distributed on an "AS IS" basis,
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
 * for the specific language governing rights and limitations under the
 * License.
 *
 * The Original Code is TurboPower Async Professional
 *
 * The Initial Developer of the Original Code is
 * TurboPower Software
 *
 * Portions created by the Initial Developer are Copyright (C) 1991-2002
 * the Initial Developer. All Rights Reserved.
 *
 * Contributor(s):
 *
 * ***** END LICENSE BLOCK ***** *)

{*********************************************************}
{*                   EXPNDX0.PAS 4.06                    *}
{*********************************************************}

{**********************Description************************}
{* Demonstrates how to use the PrinterIndex property of  *}
{*     a TPrinter object to select the APFFAX printer    *}
{*     driver programmatically as the current printer.   *}
{*********************************************************}

unit ExPNdx0;

interface

uses
  WinTypes,
  WinProcs,
  SysUtils,
  Messages,
  Classes,
  Graphics,
  Controls,
  Forms,
  Dialogs,
  Printers,
  StdCtrls,
  Buttons,
  ExtCtrls,
  OOMisc;

type
  TForm1 = class(TForm)
    BitBtn1: TBitBtn;
    Edit1: TEdit;
    Label1: TLabel;
    BitBtn2: TBitBtn;
    RadioGroup1: TRadioGroup;
    procedure BitBtn2Click(Sender: TObject);
    procedure BitBtn1Click(Sender: TObject);
    procedure RadioGroup1Click(Sender: TObject);
    procedure FormCreate(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;

implementation

{$R *.DFM}

procedure TForm1.RadioGroup1Click(Sender: TObject);
var
   Device, Name, Port: array[0..100] of Char;
   DevMode: THandle;
   PrinterName : string;
begin
  with Printer do begin
    if Printers.Count < 1 then begin
      MessageDlg('There are no printer drivers available...',mtinformation,[mbok],0);
      Exit;
    end;

    Case Radiogroup1.Itemindex of
       {sets printer to the Default Windows Printer...}
       0: Printerindex := -1;

       1: begin
            if IsWinNT then
              { NT/2K printer name is just the printer name }
              PrinterName := ApdDef32PrinterName
            else
              {9x/ME printer name is the printer name and the port }
              PrinterName := ApdDef16PrinterName + ' on ' + ApdDefPrinterPort + ':';
       { The following line of code does not fully initialize the selected   }
       { printer as the current printer (when it is not the Default Printer) }
       { using the Printerindex property. Output seems to be based on the    }
       { Default Windows Printer. }
            PrinterIndex := Printers.IndexOf(PrinterName);

       { Adding the following lines including the GetPrinter and SetPrinter  }
       { methods seem to force the selected printer (when it is not the      }
       { Default Printer) to be fully initialized as the current printer and }
       { output is printed properly. }
           GetPrinter(Device, Name, Port, DevMode);
           SetPrinter(Device, Name, Port, 0);
       end;
    end;
    Edit1.text := Printers[Printerindex];
  end;
end;

procedure TForm1.BitBtn2Click(Sender: TObject);
begin
  Close;
end;

procedure TForm1.BitBtn1Click(Sender: TObject);
begin
  Print;
end;

procedure TForm1.FormCreate(Sender: TObject);
begin
  Application.ShowHint := True;
  Edit1.text := Printer.Printers[Printer.Printerindex];
end;

end.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -