Hello:
Recently, I had circulated a question regarding copying a macro file housed within the GP Shortcut Bar to other users. This shortcut contains the keyboard shortcut of F10 and is used within VBA programming that I created.
It appears that the best way of allowing for other users to have this shortcut, without updating a SQL table, is to place the shortcut within GP User Classes.
The problem is that, especially in our Terminal Server environment, GP Shortcut keyboard keys are limited. For example, in our test Terminal Server environment, my own GP user ID uses the keyboard shortcut of F10. Accordingly, the following is my VBA programming for accessing this macro's file:
Private Sub Redisplay_BeforeUserChanged(KeepFocus As Boolean, CancelLogic As Boolean)
SendKeys "{F10}"
End Sub
When I try to grant to a User Class access to this shortcut/macro, I cannot use F10. It does not appear in the Add Shortcut window's drop-down list.
Is there another way of having VBA recognize a macro's file, then? Or, in the "SendKeys" syntax above, can I specify additional keyboard keystrokes?
Thanks!
John
*This post is locked for comments