把窗体的KeyPreview属性设置为True,并编写如下两个事件过程: Private Sub Form_KeyDown( KeyCode As Integer, Shift As Integer) Print KeyCod

admin2009-03-15  28

问题 把窗体的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键,则在窗上输出的数值为【  】。

选项

答案65 97

解析 KeyCode是键实际的ASII码,大小写字母用同一个键,但KeyPress返回的是“字符”的ASCII码,大小写不同。
转载请注明原文地址:https://kaotiyun.com/show/dR1p777K
0

最新回复(0)