Sending F-Keys to server (General questions)
I am testing the ssh product connecting to remote control a server app. All is well and I can send key strokes and get responses.
The issue at hand is I need to send some F keys to trigger the host menus. The first one I need to hit is F10.
Can someone please help me with the send command to accomplish this.
Thanks.
Sample connect code:
Dim WithEvents oSSH As WeOnlyDo.Client.SSH
Sub Main()
Dim sKey As String =
oSSH = New WeOnlyDo.Client.SSH
'Set login params
With oSSH
.Login = superman
.Password = strongpassword
.Encryption = Client.SSH.EncryptionMethods.Auto
.Protocol = Client.SSH.SupportedProtocols.SSHAuto
.StripANSI = True
.TerminalType = vt100
.Connect( 10.25.13.29 )
End With
...
Complete thread:
- Sending F-Keys to server - Bill Deihl, 2008-03-11, 20:33
- Re: Sending F-Keys to server - wodDamir, 2008-03-11, 23:39
- Re: Sending F-Keys to server - Bill Deihl, 2008-03-12, 14:23
- Re: Sending F-Keys to server - Bill Deihl, 2008-03-12, 19:15
- Re: Sending F-Keys to server - woddrazen, 2008-03-12, 19:19
- Re: Sending F-Keys to server - Bill Deihl, 2008-03-12, 19:26
- Re: Sending F-Keys to server - woddrazen, 2008-03-12, 19:19
- Re: Sending F-Keys to server - Bill Deihl, 2008-03-12, 19:15
- Re: Sending F-Keys to server - Bill Deihl, 2008-03-12, 14:23
- Re: Sending F-Keys to server - wodDamir, 2008-03-11, 23:39