OnlineGuy Level: Graduate

 Registered: 18-02-2004 Posts: 9
|
Re: Login to Remote computer on UNIX from windows PC
You have to write code for that protocol. You may want to use the MSComm add-in. If so, take a look at this:
MSComm1.CommPort = 1
MSComm1.Settings = "9600,n,8,1"
MSComm1.InputLen = 0
MSComm1.PortOpen = True
Text1.Text = "sending: hello"
MSComm1.Output = "hello"
MSComm1.PortOpen = False
____________________________
- OnlineGuy -
|