project1.~dpr

来自「GPRS/CDMA DTU数据中心源代码,基于DataCenterX控件开发.」· ~DPR 代码 · 共 25 行

~DPR
25
字号
program Project1;

uses
  Forms,
  main in 'main.pas' {frmMain},
  adddtu in 'adddtu.pas' {frmAddDTU},
  remotecfg in 'remotecfg.pas' {frmRemoteCfg},
  remoteupgrade in 'remoteupgrade.pas' {frmRemoteUpgrade},
  BleepInt in 'BleepInt.pas',
  filetest in 'filetest.pas' {frmFileTest};

{$R *.res}

begin
  DllRegisterServer;
  Application.Initialize;
  Application.Title := 'ZS-GPRS Center';
  Application.CreateForm(TfrmMain, frmMain);
  Application.CreateForm(TfrmAddDTU, frmAddDTU);
  Application.CreateForm(TfrmRemoteCfg, frmRemoteCfg);
  Application.CreateForm(TfrmRemoteUpgrade, frmRemoteUpgrade);
  Application.CreateForm(TfrmFileTest, frmFileTest);
  Application.Run;
end.

⌨️ 快捷键说明

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