VB如何设置在失去焦点之后仍然相应键盘事件?
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)If KeyCode = 37 Then
If Text1.Text= “1” then
Text1.Text= “0”
Else
Text1.Text= “1”
End If
End If
End Sub
如果我要这程序在失去焦点的情况下还能响应键盘事件需要怎么写?
追问:能详细点吗?本人菜鸟一个……
If Text1.Text= “1” then
Text1.Text= “0”
Else
Text1.Text= “1”
End If
End If
End Sub
如果我要这程序在失去焦点的情况下还能响应键盘事件需要怎么写?
追问:能详细点吗?本人菜鸟一个……
答案:setwindowhookex