infofind.~pas

来自「《Delphi 7数据库应用技术与实例》源代码__工资管理系统.rar《Delp」· ~PAS 代码 · 共 60 行

~PAS
60
字号
unit infofind;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls, Buttons, DB, DBTables, Grids, DBGrids;

type
  TForm1 = class(TForm)
    DataSource1: TDataSource;
    DBGrid1: TDBGrid;
    Table1: TTable;
    BitBtn1: TBitBtn;
    Table1number: TStringField;
    Table1name: TStringField;
    Table1sex: TStringField;
    Table1id: TStringField;
    Table1birthdate: TDateField;
    Table1workdate: TDateField;
    Table1operatordate: TDateField;
    Table1job: TStringField;
    Table1office: TStringField;
    Table1operator: TStringField;
    Table1base_salary: TFloatField;
    Table1float_salary: TFloatField;
    Table1allowance_salary: TFloatField;
    Table1age_salary: TFloatField;
    Table1award: TFloatField;
    Table1addition_award: TFloatField;
    Table1rest: TFloatField;
    Table1insurance: TFloatField;
    Table1rent: TFloatField;
    Table1detain: TFloatField;
    Table1sum: TFloatField;
    Table1real_salary: TFloatField;
    Table1tax: TFloatField;
    Table1note: TStringField;
    Table1Enabled: TBooleanField;
    procedure BitBtn1Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

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

end.

⌨️ 快捷键说明

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