ftpdemo.dpr

来自「可以帮助大家详细了解FTP编程 本站提供FTP开发实例免费下载」· DPR 代码 · 共 31 行

DPR
31
字号
// 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 FTPDemo;

uses
  {$IFDEF Linux}
  QForms,
  {$ELSE}
  Forms,
  {$ENDIF}
  mainf in 'mainf.pas' {MainForm};

{$R *.res}

begin
  Application.Initialize;
  Application.CreateForm(TMainForm, MainForm);
  Application.Run;
end.

⌨️ 快捷键说明

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