SimpleWinFormClient - simple GUI telnet client

The simplest fully functional graphical Telnet terminal - one drag & drop and one method call is all you need!

Everything you need to do to create your own fully functional graphical Telnet terminal is this:

  • Drag & drop the TelnetTerminalControl class into your Windows Forms control.
  • Specify the server hostname.
  • Call the TelnetTerminalControl's Connect method to start the Telnet session.

Check out the Windows Forms Terminal Emulation control page for more information.

C#

// specify the connection values
telnetTerminalControl.ServerName = "hostname";

// connect
telnetTerminalControl.Connect();

VB.NET

' specify the connection values
telnetTerminalControl.ServerName = "hostname"

' connect
telnetTerminalControl.Connect()