home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1999 March
/
Chip_1999-03_cd.bin
/
zkuste
/
delphi
/
INFO
/
DI9806BL.ZIP
/
Intf
/
Client
/
ChatClient.dpr
next >
Wrap
Text File
|
1998-02-01
|
693b
|
25 lines
{ *****************************************************************************
Implementing COM Component Callbacks in Delphi
Code written for Delphi Informant publication
Comments, questions, suggestions?
Binh Ly, Systems Analyst (bly@brickhouse.com)
Brickhouse Data Systems (http://www.brickhouse.com)
*****************************************************************************
}
program ChatClient;
uses
Forms,
MainFrm in 'MainFrm.pas' {frmMain},
ChatEvent in 'ChatEvent.pas',
ChatServer_TLB in '..\Server\ChatServer_TLB.pas';
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TfrmMain, frmMain);
Application.Run;
end.