jxc.dpr

来自「一个简单的进销存系统: BOM 管理 销售管理 采购管理 外发管理 库」· DPR 代码 · 共 29 行

DPR
29
字号
program jxc;

uses
  Forms,
  FormLogin in 'FormLogin.pas' {login},
  FormManage in 'FormManage.pas' {manage},
  FormInfo in 'FormInfo.pas' {Info},
  FormRights in 'FormRights.pas' {rights},
  FormStore in 'FormStore.pas' {store},
  FormReport in 'FormReport.pas' {report},
  FormInput in 'FormInput.pas' {input},
  FormOutput in 'FormOutput.pas' {output};

{$R *.res}

begin
  Application.Initialize;
  Application.Title := '进销存管理系统';
  Application.CreateForm(Tlogin, login);
  Application.CreateForm(Tmanage, manage);
  Application.CreateForm(TInfo, Info);
  Application.CreateForm(Trights, rights);
  Application.CreateForm(Tstore, store);
  Application.CreateForm(Treport, report);
  Application.CreateForm(Tinput, input);
  Application.CreateForm(Toutput, output);
  Application.Run;
end.

⌨️ 快捷键说明

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