按键后如何显示消息框

时间:2015-06-28 13:13:27

标签: vb6

我目前正在使用Visual Basic 6.0,并想知道当用户按下键盘上的特定键时,如何显示/激活消息框或其他代码,如 F1 F2

1 个答案:

答案 0 :(得分:3)

在表单中使用Form_KeyDown(Keycode,Shift)方法:

Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)

    If KeyCode = vbKeyF1 Then
        //do something here if F1 key is pressed
        //or call a method


    End If
End Sub

此外,您可能还希望将表单的KeyPreview属性设置为true。