问题 I've searched, and can't seem to find an answer, so any help would be appreciated. I want to make a hotkey, but when the hotkey is pressed, I don't want the actual "character" to be displayed, just the action to be performed. So for example, I have this: Private Declare Function GetAsyncKeyState Lib "user32" _ (ByVal vKey As KeyCodeConstants) As Long Private Const VK_A = &H41 Private Sub keyboardTimer001_Timer() If KeyDown(VK_A) Then ' do my stuff, but DONT DISPLAY the letter "A" End If end