Telnet.dpr
上传用户:mzhz2010
上传日期:2013-02-02
资源大小:217k
文件大小:1k
源码类别:

Telnet客户端

开发平台:

Delphi

  1. { ****************************************************** }
  2. { * Telnet:              version 1.01, Jan 11, 2001.   * }
  3. { *                                                    * }
  4. { * Copyright (C)1995-2001,OopsWare Corp,China. Oops!  * }
  5. { * E-mail: oops@jn-public.sd.cninfo.net               * }
  6. { *   Web : oopsware.qzone.com                         * }
  7. { *                                                    * }
  8. { * Jan 12,2001     Ver1.01                            * }
  9. { *    Fixed Chinese input bugs                        * }
  10. { *    TOopsConsole been abandoned and substituted     * }
  11. { *      with TOopsTelnet.                             * }
  12. { *                                                    * }
  13. { * Jan 8,2001      Ver1.0b                            * }
  14. { *    Can capture console text to clipboard.          * }
  15. { *                                                    * }
  16. { * Jan 1,2001      Ver1.0a                            * }
  17. { *    simple telnet can connect to SCO Unix           * }
  18. { ****************************************************** }
  19. program Telnet;
  20. uses
  21.   Forms,
  22.   Main in 'Main.pas' {TelnetForm},
  23.   About in 'About.pas' {frmAbout},
  24.   OpenHosts in 'OpenHosts.pas' {frmOpen};
  25. {$R *.RES}
  26. begin
  27.   Application.Initialize;
  28.   Application.Title := '简体中文 Telnet';
  29.   Application.CreateForm(TTelnetForm, TelnetForm);
  30.   TelnetForm.Init;
  31.   if ParamCount=1 then TelnetForm.OpenHost(ParamStr(1));
  32.   Application.Run;
  33. end.