编写如下事件过程: Private Sub Form KeyDown(KeyCode As Integer,Shift As Integer) If(Button And 3)=3 Then Print "AAAA"

admin2009-02-13  27

问题 编写如下事件过程:    Private Sub Form KeyDown(KeyCode As Integer,Shift As Integer)       If(Button And 3)=3 Then          Print "AAAA"       End If    End Sub    程序运行后,为了在窗体上输出“AAAA”,应按下的鼠标键为

选项 A、左
B、右
C、同时按下左、右
D、按什么键都不显示

答案8

解析 在窗体上按下鼠标键,触发Form Mou-seDown事件。参数Button标识鼠标的信息,1表示按下鼠标左键:2表示按下鼠标右键;4表示按下鼠标中间键。只有在键盘上输入字符时,才触发Form KeyDown事件,而不会触发 Form MouseDown事件,所以选项D为正确答案。
转载请注明原文地址:https://kaotiyun.com/show/do1p777K
0

最新回复(0)