SDIAPP.~dpr
上传用户:autowell
上传日期:2022-06-21
资源大小:16754k
文件大小:0k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. program Sdiapp;
  2. uses
  3.   Forms,
  4.   SDIMAIN in 'SDIMAIN.pas' {SDIAppForm},
  5.   About in 'ABOUT.PAS' {AboutBox};
  6. {$R *.RES}
  7. begin
  8.   Application.Initialize;
  9.   Application.CreateForm(TSDIAppForm, SDIAppForm);
  10.   Application.CreateForm(TAboutBox, AboutBox);
  11.   Application.Run;
  12. end.
  13.