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 >
Wrap
Text File
|
2002-07-09
|
518b
|
19 lines
program VerySimple;
{(C) Alex Demchenko(alex@ritlabs.com)}
uses
Forms,
ICQClient in '..\Component\ICQClient.pas', //You can remove this line
ICQWorks in '..\Component\ICQWorks.pas', //You can remove this line
ICQDirect in '..\Component\ICQDirect.pas', //You can remove this line
MySocket in '..\Component\MySocket.pas', //You can remove this line
Main in 'Main.pas' {Form1};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.