gsmcenter.dpr

来自「boomerang library 5.11 internet ed」· DPR 代码 · 共 29 行

DPR
29
字号
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 + =
减小字号Ctrl + -
显示快捷键?