- Visual C++源码
- Visual Basic源码
- C++ Builder源码
- Java源码
- Delphi源码
- C/C++源码
- PHP源码
- Perl源码
- Python源码
- Asm源码
- Pascal源码
- Borland C++源码
- Others源码
- SQL源码
- VBScript源码
- JavaScript源码
- ASP/ASPX源码
- C#源码
- Flash/ActionScript源码
- matlab源码
- PowerBuilder源码
- LabView源码
- Flex源码
- MathCAD源码
- VBA源码
- IDL源码
- Lisp/Scheme源码
- VHDL源码
- Objective-C源码
- Fortran源码
- tcl/tk源码
- QT源码
Telnet.dpr
资源名称:telnet101.zip [点击查看]
上传用户:mzhz2010
上传日期:2013-02-02
资源大小:217k
文件大小:1k
源码类别:
Telnet客户端
开发平台:
Delphi
- { ****************************************************** }
- { * 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.