[填空题] 把窗体的KeyPreview属性设置为True,并编写如下两个事件过程: Private Sub Form_KeyDown( KeyCode As Integer, Shift As I

15 查阅

[填空题] 把窗体的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码,大小写不同。

计算机考试