填空题 把窗体的KeyPreview属性设置为True,并编写如下两个事件过程: Private Sub Form_KeyDown (KeyCode As Integer,Shift As Integer) Print Chr(KeyCode) End Sub Private Sub Form_KeyPress(KeyAseii As Integer) Print KeyAscii End Sub 程序运行后,如果将CapsLock 键锁定在大写的状态,这时按下A键时,则:在窗体上输出的输出结果为{{U}} 【10】 {{/U}}和{{U}} 【11】 {{/U}}。
  • 1、
【正确答案】 1、[10] A [11] 65    
【答案解析】