mylab.dpr

来自「试验室设备管理系统」· DPR 代码 · 共 26 行

DPR
26
字号
program MyLab;

uses
  Forms,
  Main in 'MAIN.PAS' {MainForm},
  child_lab in 'child_lab.pas' {frm_YQ_Lab},
  Chind_Address in 'Chind_Address.pas' {frm_Address},
  Child_Code in 'Child_Code.pas' {frm_Code},
  Child_Borrow in 'Child_Borrow.pas' {frm_Borrow},
  prt_lab in 'prt_lab.pas' {frm_Prt_Lab},
  prt_Letter in 'prt_Letter.pas' {frm_prt_letter},
  About in 'About.pas' {frm_About},
  Child_Sort in 'Child_Sort.pas' {frm_Sort},
  Child_Chart in 'Child_Chart.pas' {frm_Chart},
  Child_Chart1 in 'Child_Chart1.pas' {frm_Chart1},
  Child_Chart2 in 'Child_Chart2.pas' {frm_Chart2};

{$R *.RES}

begin
  Application.Initialize;
  Application.Title := '实验室仪器管理';
  Application.CreateForm(TMainForm, MainForm);
  Application.Run;
end.

⌨️ 快捷键说明

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