unit2.~pas

来自「delphi数据库的程序代码」· ~PAS 代码 · 共 68 行

~PAS
68
字号
unit Unit2;

interface

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

type
  TForm2 = class(TForm)
    QuickRep1: TQuickRep;
    PageFooterBand1: TQRBand;
    TitleBand1: TQRBand;
    ColumnHeaderBand1: TQRBand;
    QRLabel1: TQRLabel;
    QRLabel2: TQRLabel;
    QRLabel3: TQRLabel;
    QRLabel4: TQRLabel;
    QRLabel5: TQRLabel;
    QRShape4: TQRShape;
    QRShape5: TQRShape;
    QRShape6: TQRShape;
    QRExpr2: TQRExpr;
    ReportDatabase: TDatabase;
    QueryEmployee: TQuery;
    QueryEmployeeEMP_NO: TSmallintField;
    QueryEmployeeLAST_NAME: TStringField;
    QueryEmployeeFIRST_NAME: TStringField;
    QueryEmployeeHIRE_DATE: TDateTimeField;
    QueryEmployeeSALARY: TFloatField;
    TableSalaryHistory: TTable;
    TableSalaryHistoryEMP_NO: TSmallintField;
    TableSalaryHistoryCHANGE_DATE: TDateTimeField;
    TableSalaryHistoryUPDATER_ID: TStringField;
    TableSalaryHistoryOLD_SALARY: TFloatField;
    TableSalaryHistoryPERCENT_CHANGE: TFloatField;
    TableSalaryHistoryNEW_SALARY: TFloatField;
    DsEmployee: TDataSource;
    DetailBand1: TQRBand;
    QRDBText1: TQRDBText;
    QRDBText2: TQRDBText;
    QRDBText3: TQRDBText;
    QRShape3: TQRShape;
    QRDBText4: TQRDBText;
    QRShape1: TQRShape;
    QRShape2: TQRShape;
    QRExpr1: TQRExpr;
    SummaryBand1: TQRBand;
    QRExpr3: TQRExpr;
    QRExpr4: TQRExpr;
    QRExpr5: TQRExpr;
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form2: TForm2;

implementation



{$R *.dfm}

end.

⌨️ 快捷键说明

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