server.dpr
上传用户:psxgmh
上传日期:2013-04-08
资源大小:15112k
文件大小:0k
源码类别:

Delphi/CppBuilder

开发平台:

Delphi

  1. program server;
  2. uses
  3.   Forms,
  4.   windows,
  5.   serverFrm in 'serverFrm.pas' {frmServer};
  6. {$R *.RES}
  7. begin
  8.   Application.Initialize;
  9.   Application.CreateForm(TfrmServer, frmServer);
  10.   Application.Run;
  11. end.