想在excel使用keydown功能结果一直没反应
写了一个简单的测试程式对按F键反应
结果compile显示使用者自订型态尚未定义
请问这该如何解决
Private Sub Worksheet_KeyDown(ByVal KeyCode As MSForms.ReturnInteger, ByVal
Shift As Integer)
If KeyCode = vbKeyF Then 'check if the user has pressed the F key
MsgBox "You pressed the F key!" 'display a message box
End If
End Sub