home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Plus SuperCD (UK) 2000 March
/
pcp161b.iso
/
full
/
delphi
/
RUNIMAGE
/
DELPHI30
/
DEMOS
/
INTERNET
/
FTP
/
FTP.DPR
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1997-08-04
|
233 b
|
15 lines
program FTP;
uses
Forms,
main in 'main.pas' {MainForm},
UsrInfo in 'UsrInfo.pas' {ConnectForm};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.