prininfounit.pas

来自「电力行业前台收费程序,需要有后台SQL数据库,和电费管理系统配合应用.」· PAS 代码 · 共 38 行

PAS
38
字号
unit PrinInfoUnit;

interface

uses
  Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  StdCtrls, ComCtrls, ExtCtrls;

type
  TFormPrintInfo = class(TForm)
    Panel1: TPanel;
    ButtonAbort: TButton;
    ProgressBar: TProgressBar;
    procedure ButtonAbortClick(Sender: TObject);
    procedure FormCreate(Sender: TObject);
  private
  public
    PrintState:Integer;
  end;
var
  FormPrintInfo : TFormPrintInfo;
implementation

{$R *.DFM}

procedure TFormPrintInfo.ButtonAbortClick(Sender: TObject);
begin
  PrintState:=3;
  Close;
end;

procedure TFormPrintInfo.FormCreate(Sender: TObject);
begin
  PrintState:=0;
end;

end.

⌨️ 快捷键说明

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