Private Sub Form_KeyPress(KeyAscii As Integer)
End Sub
这样子只能在form1里使用,怎样可以实现在哪都可以呢?
Private Sub Form_KeyPress(KeyAscii As Integer)
End Sub
这样子只能在form1里使用,怎样可以实现在哪都可以呢?
设置Form1.KeyPreview = True
这样在Form1中的任何控件按键,Form1都有KeyPress事件。
public Sub Form_KeyPress(KeyAscii As Integer)
End Sub