1
我试图当他变成活动窗口在后台窗口 运行和,我想 是仍然工作,并认识到按键盘 我使用Visual Basic版本6 能不能做窗口仍然在后台工作
我的简单代码:
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
If KeyCode = 37 Then
MsgBox ("The left arrow was pressed")
End If
End Sub