⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 nyoa.dpr

📁 是个办公系统,可以实现财务上的管理和人员的流动
💻 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 + -