SDIAPP.dpr
资源名称:xiaobai.rar [点击查看]
上传用户:autowell
上传日期:2022-06-21
资源大小:16754k
文件大小:0k
源码类别:
Delphi控件源码
开发平台:
Delphi
- program Sdiapp;
- uses
- Forms,
- SDIMAIN in 'SDIMAIN.PAS' {SDIAppForm},
- About in 'ABOUT.PAS' {AboutBox},
- Unit1 in 'Unit1.pas' {Form1};
- {$R *.RES}
- begin
- Application.Initialize;
- Application.CreateForm(TSDIAppForm, SDIAppForm);
- Application.CreateForm(TAboutBox, AboutBox);
- Application.CreateForm(TForm1, Form1);
- Application.Run;
- end.