更多"假定有如下事件过程: Private Sub Form_MouseD"的相关试题:
[单项选择]假定有如下事件过程: Private Sub Form_MouseDown(Button As Integer,Shift As Integer,X As Sinsle,Y As Single) If Button=2 then PopupMenu popForm End If End Sub 则以下描述中错误的是
A. 该过程的功能是弹出一个菜单
B. popForm是在菜单编辑器中定义的弹出式菜单的名称
C. 参数X、Y指明鼠标的当前位置
D. Button=2表示按下的是鼠标左键
[单项选择]假定有如下事件过程: Private Sub Form_MouseDown(Button As Integer,Shift As Integer,X As Single,Y As Single) If Button=2 Then PopupMenu popForm End If End Sub 则以下描述中错误的是( )。
A. 该过程的功能是弹出一个菜单
B. PopForm是在菜单编辑器中定义的弹出式菜单的名称
C. 参数X、Y指明鼠标的当前位置
D. Button=2表示按下的是鼠标左键
[单项选择]编写如下事件过程: Private Sub Form MouseDown(Button As Integer,Shift As Integer,X As Single, Y As Single) If Shift=6 And Button=2 Then Print "BBBB" End If End Sub 程序运行后,为了在窗体上输出“BBBB”,应执行的操作为
A. 同时按下Shift键和鼠标左键
B. 同时按下Ctrl、Alt键和鼠标右键
C. 同时按下Shift键和鼠标右键
D. 同时按下Ctrl、Alt键和鼠标左键
[单项选择]假定有如下事件过程: Phvate Sub Form_Click( ) DimXASInteger,nASInteger x=1 n=0 Do While x<28 x=x*3 n=n+1 Loop Ptint x,n End Sub 程序运行后,单击窗体,输出结果为______。
A. 81 4
B. 56 3
C. 28 1
D. 243 5
[单项选择]编写如下事件过程; Private Sub Form_ MouseDown (Button As Integer, Shift As Integer, X As Single, Y As Single) If Shift = 6 And Button = 1 Then Print "BBBB" End If End Sub程序运行后,为了在窗体上输出 “BBBB”,应执行的操作为______ 。
A. 同时按下Shift 键和鼠标左键
B. 同时Ctrl、Alt 键和鼠标左键
C. 同时按下Shift 键和鼠标右键
D. 同时按下Ctrl、Alt 键和鼠标左键
[单项选择]编写如下事件过程:
Private Sub Form_MouseDown(Button AS Integer,Shift AS Integer,_
X As Single,Y As Single)
If Shift=6 And Button=2 Then
Print,"PC"
End If
End Sub
程序运行后,为了在窗体上输出“PC”,应执行的操作为( )。
A. 主索引
B. 候选索引
C. 惟一索引
D. 普通索引
[单项选择]假定有如下事件过程:
Private Sub Form_MouseDown(Buaon As Integer,Shift As Integer,x As Single,y_As Single)
If Button=2 Then
PopupMenu popForm
End If
End Sub
则以下描述中错误的是
A. 该过程的功能是弹出一个菜单
B. popForm是在菜单编辑器中定义的弹出式菜单的名称
C. 参数x、y指明鼠标的当前位置
D. Button=2表示按下的是鼠标左键
[单项选择]假定编写了如下事件过程: Private Sub Form MouseDown (Button As Integer, _ Shift As Integer, X As Single, Y As Single) If Button And 2 Then Print "AAAA" End If End Sub程序运行后,为了在窗体上输出AAAA,应按下的鼠标键为______ 。
A. 左
B. 右
C. 同时按下左、右
D. 按什么键都不显示