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

📄 skyeditor.dpr

📁 本系统在一些大中型企业(跨多达24个区域)一直都在很好的服务过
💻 DPR
字号:
program SkyEditor;

uses 
  Forms,
  REAbout in 'REABOUT.PAS' {AboutBox},
  REMain1 in 'REMain1.pas' {MainForm},
  SplashForm in 'SplashForm.pas' {FrmSplash},
  newunit in 'newunit.pas' {typeform},
  sendUnit in 'sendUnit.pas' {Dform},
  zbsunit in 'zbsunit.pas' {zbsform},
  handUnit in 'handUnit.pas' {handForm};

{$R *.RES}

begin
FrmSplash := TFrmSplash.Create( Application );
  try
    FrmSplash.Show;
    FrmSplash.Update;       { Handle any Pending Paint Messages }

  Application.Title := '@NewStar通用文档资料编辑器-(客户\服务器)';

  Application.CreateForm(TMainForm, MainForm);
  Application.CreateForm(Ttypeform, typeform);
  Application.CreateForm(TDform, Dform);
  Application.CreateForm(Tzbsform, zbsform);
  Application.CreateForm(ThandForm, handForm);
  finally
    FrmSplash.Free;
  end;
  Application.Run;
end.

⌨️ 快捷键说明

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