home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 November / Chip_2002-11_cd1.bin / zkuste / delphi / kompon / d3456 / ICQ.ZIP / ICQ / VerySimpleExample / VerySimple.dpr < prev    next >
Text File  |  2002-07-09  |  518b  |  19 lines

  1. program VerySimple;
  2. {(C) Alex Demchenko(alex@ritlabs.com)}
  3.  
  4. uses
  5.   Forms,
  6.   ICQClient in '..\Component\ICQClient.pas', //You can remove this line
  7.   ICQWorks in '..\Component\ICQWorks.pas', //You can remove this line
  8.   ICQDirect in '..\Component\ICQDirect.pas', //You can remove this line  
  9.   MySocket in '..\Component\MySocket.pas', //You can remove this line
  10.   Main in 'Main.pas' {Form1};
  11.  
  12. {$R *.res}
  13.  
  14. begin
  15.   Application.Initialize;
  16.   Application.CreateForm(TForm1, Form1);
  17.   Application.Run;
  18. end.
  19.