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.   Unit1 in 'Unit1.pas' {Form1};
  7. {$R *.RES}
  8. begin
  9.   Application.Initialize;
  10.   Application.CreateForm(TSDIAppForm, SDIAppForm);
  11.   Application.CreateForm(TAboutBox, AboutBox);
  12.   Application.CreateForm(TForm1, Form1);
  13.   Application.Run;
  14. end.
  15.