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
...











