[填空题] 把窗体的KeyPreview属性设置为True,并编写如下两个事件过程:
Private Sub Form_KeyDown( KeyCode As Integer, Shift As Integer)
Print KeyCode;
End Sub
Private Sub Form_KeyPress( KeyAscii As Integer)
Print Key Ascii
End Sub
程序运行后,如果按下a键,则在窗上输出的数值为 【14】 。
[填空题] 把窗体的KeyPreview属性设置为True,并编写如下两个事件过程:
Private Sub Form_KeyDown( KeyCode As Integer, Shift As Integer)
Print KeyCode;
End Sub
Private Sub Form_KeyPress( KeyAscii As Integer)
Print Key Ascii
End Sub
程序运行后,如果按下a键,则在窗上输出的数值为 【14】 。
65 97
KeyCode是键实际的ASII码,大小写字母用同一个键,但KeyPress返回的是“字符”的ASCII码,大小写不同。
VIP截止日期:2024-12-31 10:34:43
←请使用支付宝扫码支付VIP截止日期:2024-12-31 10:34:43
←请使用微信扫码支付