?? ba010.pas
字號(hào):
unit BA010;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
Simple, Db, DBTables, StdCtrls, Mask, DBCtrls, Buttons, ExtCtrls;
type
TfmBA010 = class(TfmSimple)
Label1: TLabel;
qyMasterCompanyID: TStringField;
qyMasterRegionID: TStringField;
qyMasterRegionName: TStringField;
qyMasterCreateMan: TStringField;
qyMasterCreateDate: TStringField;
qyMasterCreateTime: TStringField;
qyMasterModifyMan: TStringField;
qyMasterModifyDate: TStringField;
qyMasterModifyTime: TStringField;
Label2: TLabel;
ED2: TDBEdit;
procedure qyMasterNewRecord(DataSet: TDataSet);
procedure qyMasterBeforePost(DataSet: TDataSet);
private
{ Private declarations }
public
{ Public declarations }
procedure OpenDB; override;
end;
var
fmBA010: TfmBA010;
implementation
uses GetData, PublicFunction, Main;
{$R *.DFM}
{ TfmBA010 }
procedure TfmBA010.OpenDB;
begin
qyMaster.Close;
OrderBySQL := 'RegionID'; //預(yù)設(shè)的排序字段
qyMaster.SQL.Text := SQLText;
qyMaster.Open;
PrimaryKeyLabel := '地區(qū)編號(hào)';
// 除qyMaster外, 其他要打開的文件寫在這里
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -