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

📄 unit2.~pas

📁 飞思科技的书不错
💻 ~PAS
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -