pro_hjgallery.~dpr

来自「it is art gallery manage system:include 」· ~DPR 代码 · 共 19 行

~DPR
19
字号
program Pro_HJgallery;

uses
  Forms,
  Unit_Main in 'Unit_Main.pas' {fmMain},
  Unit_Production in 'Unit_Production.pas' {fmProductionMgr},
  Unit_Author in 'Unit_Author.pas' {fmAuthor},
  Unit_FSell in 'Unit_FSell.pas' {Form_Sell};

{$R *.res}

begin
  Application.Initialize;
  Application.CreateForm(TfmMain, fmMain);
  Application.CreateForm(TfmAuthor, fmAuthor);
  Application.CreateForm(TForm_Sell, Form_Sell);
  Application.Run;
end.

⌨️ 快捷键说明

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