indysshdemo.dpr
来自「著名的SecureBlackBox控件完整源码」· DPR 代码 · 共 21 行
DPR
21 行
program IndySSHDemo;
uses
Forms,
MainForm in 'MainForm.pas' {frmMain},
AboutForm in 'AboutForm.pas' {frmAbout},
ConnectionPropertiesForm in 'ConnectionPropertiesForm.pas' {frmConnectionProperties},
SBIdSSHClient in '..\..\..\..\Classes\IndySSHClient\Client\SBIdSSHClient.pas';
{$R *.res}
begin
Application.Title := 'ElIdSSHClient demo application';
Application.Initialize;
Application.CreateForm(TfrmMain, frmMain);
Application.CreateForm(TfrmAbout, frmAbout);
Application.CreateForm(TfrmConnectionProperties, frmConnectionProperties);
Application.Run;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?