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

📄 gsmcenter.dpr

📁 boomerang library 5.11 internet ed
💻 DPR
字号:
program GSMCenter;

{%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.Drawing.dll'}

uses
  Forms,
  Dialogs,
  Messages,
  dm_GSM in 'dm_GSM.pas' {GSMDataModule: TDataModule},
  GSMCtrFr in 'GSMCtrFr.pas' {GSMCentralForm};

{$R *.RES}

{$IFDEF CLR}
[STAThread]
{$ENDIF}
begin
  try
    Application.Initialize;
    Application.Title := 'GSM Center';
    Application.CreateForm(TGSMDataModule, GSMDataModule);
  Application.CreateForm(TGSMCentralForm, GSMCentralForm);
  Application.Run;
  except
    on E: Exception do  // show what happened
      MessageDlg(E.Message, mtError, [mbOk], 0);
  end;
end.

⌨️ 快捷键说明

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