📄 hydquery.dpr
字号:
program HydQuery;
uses
Forms,
main in 'main.pas' {FrmMain},
DbMgr in 'DbMgr.pas',
Lease in 'Lease.pas' {FrLease: TFrame},
IntDate in 'IntDate.pas' {FrmDate},
IntMonth in 'IntMonth.pas' {FrmIntMonth},
IntArea in 'IntArea.pas' {FrmArea},
IntBox in 'IntBox.pas' {FrmIntBox},
Client in 'Client.pas' {FrClient: TFrame},
Free in 'Free.pas' {FrFree: TFrame},
SkinMdl in 'SkinMdl.pas' {SkinModule: TDataModule};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TFrmMain, FrmMain);
Application.CreateForm(TFrmDate, FrmDate);
Application.CreateForm(TFrmIntMonth, FrmIntMonth);
Application.CreateForm(TFrmArea, FrmArea);
Application.CreateForm(TFrmIntBox, FrmIntBox);
Application.Run;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -