单选题 编写如下两个事件过程。 Private Sub Form_KeyDown(KeyCode As Integer,Shift As Integer) Print Chr(KeyCode) End Sub Private Sub Form_KeyPress(KeyAscii As Integer) Print Chr(KeyAscii) End Sub 在一般情况下(即不按住Shift键和锁定大写键时)运行程序,如果按“A”键,则程序输出的结果是
【正确答案】 C
【答案解析】[解析] KeyCode是按键的实际的字符 (不区分大小写)KeyAscii是以字符为准,是所按键的 ASSII码。