project1.~dpr

来自「这是一个小型的工资管理系统」· ~DPR 代码 · 共 24 行

~DPR
24
字号
program Project1;

uses
  Forms,
  main1 in 'main1.pas' {main},
  checkuser in 'checkuser.pas' {check},
  historyfind in 'historyfind.pas' {history},
  seekdata in 'seekdata.pas' {seekform},
  salary_change in 'salary_change.pas' {salarychangeform},
  employee in 'employee.pas' {employeeform};

{$R *.res}

begin
  Application.Initialize;
  Application.CreateForm(Tmain, main);
  Application.CreateForm(Tcheckuserform, checkuserform);
  Application.CreateForm(Thistory, history);
  Application.CreateForm(Tseekform, seekform);
  Application.CreateForm(Tsalarychangeform, salarychangeform);
  Application.CreateForm(Temployeeform, employeeform);
  Application.Run;
end.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?