home *** CD-ROM | disk | FTP | other *** search
- program Ftp_pr;
-
- uses
- Forms,
- Ftp in 'FTP.PAS' {FTPForm},
- Login in 'LOGIN.PAS' {LoginDLG},
- Fileget in 'FILEGET.PAS' {GetDLG},
- Fileput in 'FILEPUT.PAS' {PutDLG},
- Fileren in 'FILEREN.PAS' {RenDLG},
- Fileview in 'FILEVIEW.PAS' {ViewDLG},
- Meter in 'METER.PAS' {MeterDLG};
-
- {$R *.RES}
-
- begin
- Application.CreateForm(TFTPForm, FTPForm);
- Application.CreateForm(TLoginDLG, LoginDLG);
- Application.CreateForm(TGetDLG, GetDLG);
- Application.CreateForm(TPutDLG, PutDLG);
- Application.CreateForm(TRenDLG, RenDLG);
- Application.CreateForm(TViewDLG, ViewDLG);
- Application.CreateForm(TMeterDLG, MeterDLG);
- Application.Run;
- end.
-