home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 November / Chip_2002-11_cd1.bin / zkuste / delphi / kompon / d3456 / ICQ.ZIP / ICQ / DBConverter / DbConvert.dpr < prev    next >
Text File  |  2002-08-16  |  381b  |  17 lines

  1. program DbConvert;
  2. {(C) Alex Demchenko(alex@ritlabs.com)}
  3.  
  4. uses
  5.   Forms,
  6.   Unit1 in 'Unit1.pas' {Form1},
  7.   ICQWorks in '..\Component\ICQWorks.pas',      //This line can be removed
  8.   ICQDb in '..\Component\ICQDb.pas';            //This line can be removed
  9.  
  10. {$R *.res}
  11.  
  12. begin
  13.   Application.Initialize;
  14.   Application.CreateForm(TForm1, Form1);
  15.   Application.Run;
  16. end.
  17.