limis.~dpr
来自「1. 纯粹的合同管理,不涉及其它业务,独立成系统2. 简单明了,流程清析3. 合」· ~DPR 代码 · 共 36 行
~DPR
36 行
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};
{$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.Run;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?