问题 单项选择题

把窗体的KeyPreview属性设置为True,然后编写如下过程: Private SubForm_KeyDown(KeyCode As Integer,Shift As Integer)PrintChr (KeyCode) End Sub Private Sub Form_KeyUp(KeyCode As Integer, Shift As Integer)PrintChr(KeyCode+2) End Sub 程序运行后,如果按“A”键,则输出结果为 ______。

A.A A

B.A B

C.A C

D.A D

答案

参考答案:C

解析:[评析] 当键盘被按下时,输出按下的键所代表的字符,即“A”;当键盘被松开的时候,输出该字符后继字符的后继字符,即“C”。

选择题
多项选择题