?? nyoa.dpr
字號:
program NYOA;
uses
Forms,
UlogIn in 'UlogIn.pas' {frmLogIn},
MyData in 'MyData.pas' {dm: TDataModule},
Umain in 'Umain.pas' {frmMain},
UemployeeMgr in 'UemployeeMgr.pas' {frmEmployeeMgr},
UemployeeAdd in 'UemployeeAdd.pas' {frmEmployeeAdd},
UpersonalChange in 'UpersonalChange.pas' {frmPersonalChange},
UarrangeOrders in 'UarrangeOrders.pas' {frmArrangeOrders},
Usalary in 'Usalary.pas' {frmSalary},
UdailyCost in 'UdailyCost.pas' {frmDailyCost},
Userver in 'Userver.pas' {frmServer},
Userverchart in 'Userverchart.pas' {frmServerchart},
Ulogdaily in 'Ulogdaily.pas' {frmLogdaily},
Usysmanadd in 'Usysmanadd.pas' {frmSysmanadd},
Upasschg in 'Upasschg.pas' {frmPasschg},
Udatecontrol in 'Udatecontrol.pas' {frmDatacontrol},
Uconnact in 'Uconnact.pas' {frmContact},
Ucustom in 'Ucustom.pas' {frmCustomer},
UpublcBrower in 'UpublcBrower.pas' {frmPublicBrower},
UemployeeUpdate in 'UemployeeUpdate.pas' {frmEmployeeUpdate},
UcustomerUpdate in 'UcustomerUpdate.pas' {frmCustomerUpdate},
UcustomerAdd in 'UcustomerAdd.pas' {frmCustomerAdd},
Ufamily in 'Ufamily.pas' {frmFamily},
UtodayWorkRecord in 'UtodayWorkRecord.pas' {frmTodayRecord},
UtodayWork in 'UtodayWork.pas' {frmTodayWork},
Userverchg in 'Userverchg.pas' {frmServiceVisit},
Uproserveradd in 'Uproserveradd.pas',
Uservicing in 'Uservicing.pas' {frmServicing},
utotal in 'Utotal.pas' {frmTotal},
Uabout in 'Uabout.pas' {frmAbout};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TfrmMain, frmMain);
Application.CreateForm(Tdm, dm);
Application.CreateForm(TfrmSalary, frmSalary);
Application.CreateForm(TfrmEmployeeAdd, frmEmployeeAdd);
Application.CreateForm(TfrmLogIn, frmLogIn);
Application.CreateForm(TfrmEmployeeUpdate, frmEmployeeUpdate);
Application.CreateForm(TfrmCustomerUpdate, frmCustomerUpdate);
Application.CreateForm(TfrmContact, frmContact);
Application.CreateForm(TfrmCustomerAdd, frmCustomerAdd);
Application.CreateForm(TfrmFamily, frmFamily);
Application.CreateForm(TfrmTodayRecord, frmTodayRecord);
Application.CreateForm(TfrmTodayWork, frmTodayWork);
Application.CreateForm(TfrmServiceVisit, frmServiceVisit);
Application.CreateForm(TfrmServicing, frmServicing);
Application.Run;
end.
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -