unit3.~pas
来自「delphi数据库的程序代码」· ~PAS 代码 · 共 42 行
~PAS
42 行
unit Unit3;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, DBTables, DB, ExtCtrls, DBCtrls, Grids, DBGrids, StdCtrls;
type
TForm1 = class(TForm)
DataSource1: TDataSource;
Table1: TTable;
Query1: TQuery;
DataSource2: TDataSource;
DBNavigator1: TDBNavigator;
DBGrid1: TDBGrid;
DBGrid2: TDBGrid;
Label1: TLabel;
Label2: TLabel;
Table1ID: TAutoIncField;
Table1Name: TStringField;
Table1Sex: TStringField;
Table1BirthDay: TDateTimeField;
Table1Job: TStringField;
Table1Dept: TStringField;
Table1Salary: TIntegerField;
Query1DutyDate: TDateTimeField;
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?