第5题: [填空题]把窗体的KeyPreview属性设置为True,并编写如下两个事件过程: Private Sub Form KeyDown(KeyCode As Integer,Shift As Integer) Print KeyCode; End Sub Private Sub Form_KeyPress(KeyAscii As Integer) Print KeyAscii End Sub 程序运行后,如果按下A键,则在窗体上输出的数值为 【11】 和 【12】 。 参考答案:[11]65 [12]97 答案解析:[评析] 按下和松开一个ANSI键时发生KcyPress事件,其语法为: Private Sub object_KeyPress([index As Integer,]keyascii As