WhoCQ.~dpr
资源名称:whocq2src.zip [点击查看]
上传用户:sunrenlu
上传日期:2007-01-08
资源大小:199k
文件大小:0k
源码类别:
Internet/网络编程
开发平台:
Delphi
- program WhoCQ;
- uses
- Forms,
- Unit1 in 'Unit1.pas' {Form1},
- Ingusclass in 'Ingusclass.pas',
- Protohdr in 'Protohdr.pas',
- packet32 in 'Packet32.pas',
- IngusPacket in 'IngusPacket.pas',
- nettest in 'nettest.pas' {Form2};
- {$R *.RES}
- begin
- Application.Initialize;
- Application.ShowMainForm := False;
- Application.Title := 'WhoCQ';
- Application.CreateForm(TForm1, Form1);
- Application.CreateForm(TForm2, Form2);
- Form1.Show;
- Application.Run;
- end.