client.dpr
上传用户:zhuoer
上传日期:2007-01-08
资源大小:128k
文件大小:1k
源码类别:

远程控制编程

开发平台:

Delphi

  1. { This demo illustrates a simple chat program using the Client and Server socket
  2.   components.  With this demo you can send text between two computers.   This
  3.   program must be running on both computers at the same time for a connection
  4.   to be made.  Once connected you can exchange text by typing into the memo and
  5.   pressing the Enter key which will send the last line of text in the memo to
  6.   the other machine.  }
  7. program client;
  8. uses
  9.   Forms,
  10.   main in 'main.pas' {ClientForm},
  11.   MessageUnit in 'MessageUnit.pas' {frmMessage},
  12.   about in 'about.pas' {AboutForm};
  13. {$R *.RES}
  14. begin
  15.   Application.Initialize;
  16.   Application.Title := 'BoyFriend';
  17.   Application.CreateForm(TClientForm, ClientForm);
  18.   Application.CreateForm(TfrmMessage, frmMessage);
  19.   Application.CreateForm(TAboutForm, AboutForm);
  20.   Application.Run;
  21. end.