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

📄 delphihelper.dpr

📁 DelphiHelper---Delphi帮助源代码
💻 DPR
字号:
program DelphiHelper;

uses
  Forms,
  main in 'main.pas' {frmmain},
  data in 'data.pas' {DM: TDataModule},
  sp in 'sp.pas' {frmsp},
  arcedit in 'arcedit.pas' {frmarcedit},
  arcadd in 'arcadd.pas' {frmarcadd},
  about in 'about.pas' {frmabout},
  funadd in 'funadd.pas' {frmfunadd},
  funedit in 'funedit.pas' {frmfunedit},
  coloradd in 'coloradd.pas' {frmcoloradd},
  logslt in 'logslt.pas' {frmlogslt};

{$R *.res}

begin
  Application.Initialize;
  Application.Title := 'DelphiHelper';
  frmsp:=tfrmsp.create(application);
  frmsp.Show;
  frmsp.Update;
  Application.CreateForm(TDM, DM);
  Application.CreateForm(Tfrmmain, frmmain);
  Application.CreateForm(Tfrmarcedit, frmarcedit);
  Application.CreateForm(Tfrmarcadd, frmarcadd);
  Application.CreateForm(Tfrmabout, frmabout);
  Application.CreateForm(Tfrmfunadd, frmfunadd);
  Application.CreateForm(Tfrmfunedit, frmfunedit);
  Application.CreateForm(Tfrmcoloradd, frmcoloradd);
  Application.CreateForm(Tfrmlogslt, frmlogslt);
  frmsp.Hide;
  frmsp.Free;
  Application.Run;
end.

⌨️ 快捷键说明

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