快捷键不灵活问题
Private Sub form_keydown(keycode As Integer, shift As Integer)
If keycode = 17 Then '17是Ctrl键的值
End If
If keycode = 18 Then '18是Alt键的值
End If
End Sub
以上是我为command1和command2所设的快捷键,现在有个问题就是当程序打开时按"Ctrl"和"Alt"键会立即起作用,但第二次再按时就不灵活了;If keycode = 17 Then '17是Ctrl键的值
End If
If keycode = 18 Then '18是Alt键的值
End If
End Sub
发现出现这样一种现象,在光标改变位置的情况下快捷键是起作用的,如果光标一直处在同一位子,这两个快捷键就要都多按一遍才会起作用。
不知是什么问题?求指点。