ftpsdemo.dpr

来自「著名的SecureBlackBox控件完整源码」· DPR 代码 · 共 18 行

DPR
18
字号
program FTPSDemo;

uses
  Forms,
  FTPUnit in 'FTPUnit.pas' {FTPForm},
  ConnPropsForm in 'ConnPropsForm.pas' {frmConnProps},
  AboutForm in 'AboutForm.pas' {frmAbout},
  ProgressForm in 'ProgressForm.pas' {frmProgress};

begin
  Application.Initialize;
  Application.CreateForm(TFTPForm, FTPForm);
  Application.CreateForm(TfrmConnProps, frmConnProps);
  Application.CreateForm(TfrmAbout, frmAbout);
  Application.CreateForm(TfrmProgress, frmProgress);
  Application.Run;
end.

⌨️ 快捷键说明

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