zcbbunit1.pas

来自「这是一个Delphi很好很全面知识的实例」· PAS 代码 · 共 47 行

PAS
47
字号
unit ZCBBUnit1;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, ExtCtrls, QuickRpt, QRCtrls;

type
  TZCBBForm = class(TForm)
    QuickRep1: TQuickRep;
    QRBand1: TQRBand;
    QRLabel1: TQRLabel;
    QRBand2: TQRBand;
    QRDBText1: TQRDBText;
    QRDBText2: TQRDBText;
    QRDBText3: TQRDBText;
    QRDBText4: TQRDBText;
    QRLabel2: TQRLabel;
    QRLabel3: TQRLabel;
    QRLabel4: TQRLabel;
    QRLabel5: TQRLabel;
    QRShape2: TQRShape;
    procedure FormClose(Sender: TObject; var Action: TCloseAction);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  ZCBBForm: TZCBBForm;

implementation

uses mainUnit1, MDUnit1, SPUnit1, SRBBUnit1, SRCXUnit1, SRLLUnit1,
  TJSRUnit1, TJZCUnit1, untDL, ZCCXUnit1, ZCLLUnit1;

{$R *.dfm}

procedure TZCBBForm.FormClose(Sender: TObject; var Action: TCloseAction);
begin
free;
end;

end.

⌨️ 快捷键说明

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