ftpapp.dpr

来自「一个使用Delphi实现的FTP下载工具」· DPR 代码 · 共 29 行

DPR
29
字号
// This demo demonstrates the use of IdFTP and IdDebugLog components
// There is some problems with ABORT function.
//
// This demo supports both UNIX and DOS directory listings
//
//  Copyright (C) 2000 Doychin Bondzhev (doichin@5group.com)
//
// History:
//   Sep - 2000 : Initial release
//
//   Nov - 2000 : Minor updates and GUI enhancements
//

program FtpApp;

uses
  Forms,
  Unit1 in 'Unit1.pas' {Form1},
  MD5 in 'MD5.PAS';

{$R *.res}

begin
  Application.Initialize;
  Application.Title := '下载工具';
  Application.CreateForm(TForm1, Form1);
  Application.Run;
end.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?