home *** CD-ROM | disk | FTP | other *** search
/ Kompuutteri K-CD 2002 #1 / K-CD_2002-01.iso / Delphi / INSTALL / program files / Borland / Delphi6 / Demos / Ipcdemos / client.dpr < prev    next >
Encoding:
Text File  |  2001-05-22  |  236 b   |  15 lines

  1. program Client;
  2.  
  3. uses
  4.   Forms,
  5.   ClntForm in 'ClntForm.pas' {ClientForm},
  6.   IPCThrd in 'Ipcthrd.pas';
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Initialize;
  12.   Application.CreateForm(TClientForm, ClientForm);
  13.   Application.Run;
  14. end.
  15.