⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 telnet.dpr

📁 < Delphi网络通信协议分析与应用实现>>一书的源代码。
💻 DPR
字号:
{ ****************************************************** }
{ * Telnet:              version 1.01, Jan 11, 2001.   * }
{ *                                                    * }
{ * Copyright (C)1995-2001,OopsWare Corp,China. Oops!  * }
{ * E-mail: oops@jn-public.sd.cninfo.net               * }
{ *   Web : oopsware.qzone.com                         * }
{ *                                                    * }
{ * Jan 12,2001     Ver1.01                            * }
{ *    Fixed Chinese input bugs                        * }
{ *    TOopsConsole been abandoned and substituted     * }
{ *      with TOopsTelnet.                             * }
{ *                                                    * }
{ * Jan 8,2001      Ver1.0b                            * }
{ *    Can capture console text to clipboard.          * }
{ *                                                    * }
{ * Jan 1,2001      Ver1.0a                            * }
{ *    simple telnet can connect to SCO Unix           * }
{ ****************************************************** }

program Telnet;

uses
  Forms,
  Main in 'Main.pas' {TelnetForm},
  About in 'About.pas' {frmAbout},
  OpenHosts in 'OpenHosts.pas' {frmOpen};

{$R *.RES}

begin
  Application.Initialize;
  Application.Title := '简体中文 Telnet';
  Application.CreateForm(TTelnetForm, TelnetForm);
  TelnetForm.Init;
  if ParamCount=1 then TelnetForm.OpenHost(ParamStr(1));
  Application.Run;
end.

⌨️ 快捷键说明

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