home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 March / Chip_1999-03_cd.bin / zkuste / delphi / INFO / DI9806BL.ZIP / Cp / Client / ChatClient.dpr next >
Text File  |  1998-02-01  |  693b  |  25 lines

  1. { *****************************************************************************
  2.   Implementing COM Component Callbacks in Delphi
  3.   Code written for Delphi Informant publication
  4.  
  5.   Comments, questions, suggestions?
  6.   Binh Ly, Systems Analyst (bly@brickhouse.com)
  7.   Brickhouse Data Systems (http://www.brickhouse.com)
  8.   *****************************************************************************
  9. }
  10. program ChatClient;
  11.  
  12. uses
  13.   Forms,
  14.   MainFrm in 'MainFrm.pas' {frmMain},
  15.   ChatEvent in 'ChatEvent.pas',
  16.   ChatServer_TLB in '..\Server\ChatServer_TLB.pas';
  17.  
  18. {$R *.RES}
  19.  
  20. begin
  21.   Application.Initialize;
  22.   Application.CreateForm(TfrmMain, frmMain);
  23.   Application.Run;
  24. end.
  25.