TESTREG.DPR
上传用户:yuandong
上传日期:2022-08-08
资源大小:954k
文件大小:0k
源码类别:

Delphi控件源码

开发平台:

C++ Builder

  1. program TestReg;
  2. uses
  3.   Forms,
  4.   RegForm in 'RegForm.pas' {Form1};
  5. {$R *.RES}
  6. begin
  7.   Application.Initialize;
  8.   Application.Title := 'Print Processor Installer Tool';
  9.   Application.CreateForm(TPPInstallForm, PPInstallForm);
  10.   Application.Run;
  11. end.