Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

F9 Key via Connector?

Status
Not open for further replies.

Archimedez

Instructor
Sep 21, 2005
22
0
0
GB
I can't remember the proper syntax for passing an F9 key via Connector

MIMS.Screen.MSO.Commands("Create").Execute
MIMS.Screen.MSO.Commends("CREATE").Execute
both return an error:"unable to match named index"

MIMS.Screen.Fields(FKEYS1I) = "F9"
has no effect - regardless of which F-Key is sent

Any ideas?

 
I try this bit of (VB) code to see what the name of the command.
Code:
    strFK = ""
    For iFK = 1 To oMimsx.Screen.MSO.Commands.Count
      strFK = strFK & CStr(iFK) & " " & _
              oMimsx.Screen.MSO.Commands(iFK).Name & "; "
    Next iFK
    Debug.Print "Commands/Function Keys available on " & _
                oMimsx.Screen.MSO.Name & _
                ": " & _
                strFK
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top