作者sinlin (豆浆)
看板Visual_Basic
标题[VBA ] KeyDown显示未定义
时间Tue Apr 18 12:50:23 2023
想在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
--
※ 发信站: 批踢踢实业坊(ptt.cc), 来自: 211.22.200.117 (台湾)
※ 文章网址: https://webptt.com/cn.aspx?n=bbs/Visual_Basic/M.1681793425.A.D63.html
1F:推 waiter337: If KeyCode = 70 Then 04/20 22:22
谢谢, 但改成70结果还是依样未定义耶
※ 编辑: sinlin (218.166.70.212 台湾), 04/24/2023 08:45:40
2F:→ ShoterMan: 我自己测试 用 onkey 勉强可行 05/26 11:03