Software Development Network>> Visual Basic>> Telnet with vb
well you can spin up a process of telnet and send it arguments to run with:
System.Diagnostics.Process.Start("Telnet /args")
where "args" is the arguments you want to pass to the application.
you could also redirect input/output/errors to your application using the System.Diagnostics.Process.ProcessStartInfo class
http://msdn2.microsoft.com/en-us/library/system.diagnostics.processstartinfo.aspx
Telnet with vb
Andrew Lynes
Matt Jones
well you can spin up a process of telnet and send it arguments to run with:
System.Diagnostics.Process.Start("Telnet /args")
where "args" is the arguments you want to pass to the application.
you could also redirect input/output/errors to your application using the System.Diagnostics.Process.ProcessStartInfo class
http://msdn2.microsoft.com/en-us/library/system.diagnostics.processstartinfo.aspx
ChangNoi
Derek Comingore