Test.dpr
上传用户:graphite
上传日期:2020-09-09
资源大小:2587k
文件大小:1k
- program test;
- uses
- Forms,
- Windows,
- aspr_api,
- normal in 'dfmnormal.pas' {frmApp},
- regkey in 'dfmregkey.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.