Ansi telnet. Hyperterminal. BBS Terminal. Where to start?

Core

Member
Joined
Apr 23, 2006
Messages
10
Programming Experience
1-3
Using hyperterminal with windows you can log into a BBS and you see colors, blinking, etc.. How do I do that in .net?

I have figured out how to make the connection. Here is my receive code.

NumBytes = tnSocket.Receive(RecvBytes, RecvBytes.Length, 0)
RecvString = RecvString + Encoding.Unicode.GetString(RecvBytes, 0, NumBytes)

Currently I am not even getting the correct characters. But even if I could do I have to figure out what every escape code is and convert it to colors and stuff or is there a way to do it in .net?
 
ANSI telenet. Like with a BBS. How? Anyone?

I am trying to write a simple program like Hyperterminal. Is there an easy way to handle ANSI escape codes?

I can make the telnet connection no problem.
 
Back
Top