WhoCQ.~dpr
上传用户:sunrenlu
上传日期:2007-01-08
资源大小:199k
文件大小:0k
源码类别:

Internet/网络编程

开发平台:

Delphi

  1. program WhoCQ;
  2. uses
  3.   Forms,
  4.   Unit1 in 'Unit1.pas' {Form1},
  5.   Ingusclass in 'Ingusclass.pas',
  6.   Protohdr in 'Protohdr.pas',
  7.   packet32 in 'Packet32.pas',
  8.   IngusPacket in 'IngusPacket.pas',
  9.   nettest in 'nettest.pas' {Form2};
  10. {$R *.RES}
  11. begin
  12.     Application.Initialize;
  13.   Application.ShowMainForm := False;
  14.   Application.Title := 'WhoCQ';
  15.   Application.CreateForm(TForm1, Form1);
  16.   Application.CreateForm(TForm2, Form2);
  17.   Form1.Show;
  18.   Application.Run;
  19. end.