Server.dpr
上传用户:cnjnqp
上传日期:2022-05-02
资源大小:194k
文件大小:0k
源码类别:

打印编程

开发平台:

Delphi

  1. program Server;
  2. uses
  3.   Forms,
  4.   uServerMain in 'uServerMain.pas' {frmServerMain};
  5. {$R *.res}
  6. begin
  7.   Application.Initialize;
  8.   Application.CreateForm(TfrmServerMain, frmServerMain);
  9.   Application.Run;
  10. end.