📄 infofind.~pas
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -