ImagerProj.dpr
上传用户:boolsoft
上传日期:2015-05-18
资源大小:46607k
文件大小:0k
源码类别:

网络编程

开发平台:

Delphi

  1. program ImagerProj;
  2. uses
  3.   Forms,
  4.   ImagerMain in 'ImagerMain.pas' {ImagerForm};
  5. {$R *.RES}
  6. begin
  7.   Application.Initialize;
  8.   Application.CreateForm(TImagerForm, ImagerForm);
  9.   Application.Run;
  10. end.