📄 ftpapp.dpr
字号:
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -