test.dpr

来自「ASProtect的2.4版」· DPR 代码 · 共 27 行

DPR
27
字号
program test;

uses
  Forms,
  Windows,
  aspr_api,
  normal        in 'dfm\normal.pas' {frmApp},
  regkey        in 'dfm\regkey.pas' {frmRegKey};

{$R *.RES}

//------------------------------------------------------------------------------
// Initialization
//------------------------------------------------------------------------------

const
  MessageTitle = 'Information';
  MessageStr   = 'This example shows the work in trial mode.';

begin

  MessageBox(0, MessageStr, MessageTitle, MB_ICONINFORMATION );

  Application.Initialize;
  Application.CreateForm(TfrmApp, frmApp);
  Application.Run;
end.

⌨️ 快捷键说明

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