Test.dpr
上传用户:graphite
上传日期:2020-09-09
资源大小:2587k
文件大小:1k
源码类别:

破解

开发平台:

Others

  1. program test;
  2. uses
  3.   Forms,
  4.   Windows,
  5.   aspr_api,
  6.   normal        in 'dfmnormal.pas' {frmApp},
  7.   regkey        in 'dfmregkey.pas' {frmRegKey};
  8. {$R *.RES}
  9. //------------------------------------------------------------------------------
  10. // Initialization
  11. //------------------------------------------------------------------------------
  12. const
  13.   MessageTitle = 'Information';
  14.   MessageStr   = 'This example shows the work in trial mode.';
  15. begin
  16.   MessageBox(0, MessageStr, MessageTitle, MB_ICONINFORMATION );
  17.   Application.Initialize;
  18.   Application.CreateForm(TfrmApp, frmApp);
  19.   Application.Run;
  20. end.