Typing a command key in a DesktopSearchField does not trigger the KeyDown event, and results in a Beep.
The following code does not produce a message in the DesktopSearchField, but it will show the message from a DesktopTextArea or a DesktopTextField. The KeyDown event is active in each entry area.
If Keyboard.AsyncCommandKey And key = "g" Then
MessageBox("gdown")
Return True
End If
Is there a way to detect a command key in the DesktopSearchField?
Thanks - Keith