📄 limis.dpr
字号:
program Limis;
uses
Forms,
main in 'main.pas' {F_Main},
customer in 'customer.pas' {F_Customer},
dm in 'dm.pas' {MyDM: TDataModule},
bill in 'bill.pas' {F_Policy},
policydetail in 'policydetail.pas' {F_PoliDetail},
billreal in 'billreal.pas' {F_Bill},
dbset in 'dbset.pas' {F_DBSet},
login in 'login.pas' {F_Login},
rep in 'rep.pas' {F_Rep},
material in 'material.pas' {F_Material},
user in 'user.pas' {F_User},
insurant in 'insurant.pas' {F_Insurant},
bene in 'bene.pas' {F_Bene};
{$R *.res}
begin
Application.Initialize;
//Application.CreateForm(TF_DBSet, F_DBSet);
Application.CreateForm(TF_Login, F_Login);
Application.CreateForm(TF_Main, F_Main);
Application.CreateForm(TF_Customer, F_Customer);
Application.CreateForm(TMyDM, MyDM);
Application.CreateForm(TF_Policy, F_Policy);
Application.CreateForm(TF_PoliDetail, F_PoliDetail);
Application.CreateForm(TF_Bill, F_Bill);
Application.CreateForm(TF_Rep, F_Rep);
Application.CreateForm(TF_Material, F_Material);
Application.CreateForm(TF_User, F_User);
Application.CreateForm(TF_Insurant, F_Insurant);
Application.CreateForm(TF_Bene, F_Bene);
Application.Run;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -