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 >
Wrap
Text File
|
2002-08-16
|
381b
|
17 lines
program DbConvert;
{(C) Alex Demchenko(alex@ritlabs.com)}
uses
Forms,
Unit1 in 'Unit1.pas' {Form1},
ICQWorks in '..\Component\ICQWorks.pas', //This line can be removed
ICQDb in '..\Component\ICQDb.pas'; //This line can be removed
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.