Demo1stClassMDI.dpr
上传用户:hylc_2004
上传日期:2014-01-23
资源大小:46800k
文件大小:0k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. program Demo1stClassMDI;
  2. uses
  3.   Forms,
  4.   Main in 'MAIN.PAS' {MainMDIForm},
  5.   Childwin in 'CHILDWIN.PAS' {MDIChild},
  6.   About in 'about.pas' {AboutBox};
  7. {$R *.RES}
  8. begin
  9.   Application.Initialize;
  10.   Application.CreateForm(TMainMDIForm, MainMDIForm);
  11.   Application.Run;
  12. end.