要选定两个不连续的文件组,先按shift选择第一组,然后按Ctrl选择第二组的第一个文件,最后按( )单击第二组的最后一个文件即可。
A:Ctrl+Space B:Ctrl+Alt C:Ctrl+Shift D:Shift+Space
在选择曲线对象时,按ctrl+shift可选择()节点
A:A、单个 B:B、多个 C:C、部分 D:D、所有
在绘制尺度线时,按()键可以切换创建水平、垂直的尺度线
A:A、TAB B:B、ALT C:C、CTRL D:D、SHIFT
有如下事件过程,当同时按下转换键Ctrl和功能键F6时,最后输出的信息是
Const ShiftKey=1
Const CtrlKey=2
Const Key_F5=&H74
Const Key_F6=&H75
Private Sub Text1_KeyDown(KeyCode As Integer,Shift As Integer)
If KeyCode=Key_F5 And Shift=ShiftKey Then
Print"Press Shift+F5"
Elself Key Code=Key_F6 And Shift=CtrlKey Then
Print"Press Ctrl+F6"
End If
End Sub
A:无任何信息 B:Press Shift+F5 C:Press Ctrl+F6 D:程序出错
有如下事件过程,当同时按下转换键Ctrl和功能键F6时,最后输出的信息是 Const ShiftKey=1 Const CtrlKey=2 Const Key_F5=&H74 Const Key_F6=&H75 Private Sub Text1_KeyDown(KeyCode As Integer,Shift As Integer) If KeyCode=Key_F5 And Shift=ShiftKey Then Print"Press Shift+F5" Elself Key Code=Key_F6 And Shift=CtrlKey Then Print"Press Ctrl+F6" End If End Sub
A:无任何信息 B:Press Shift+F5 C:Press Ctrl+F6 D:程序出错
有如下事件过程,当同时按下转换键Ctrl和功能键F6时,最后输出的信息是( )。
Const ShiftKey=1
Const CtrlKey=2
Const Key_F5=&H74
Const Key_F6=&H75
Private Sub Text1_KeyDown(KeyCode As Integer,Shift As Integer)
If KeyCode=Key_F5 And Shift=ShiftKey Then
Print"Press Shift+F5"
Elself Key Code=Key_F6 And Shift=CtrlKey Then
Print"Press Ctrl+F6"
End If
End Sub
A:无任何信息 B:Press Shift+F5 C:Press Ctrl+F6 D:程序出错
有如下事件过程,当同时按下转换键Ctrl和功能键F6时,最后输出的信息是( )。
Const ShiftKey=1
Const CtrlKey=2
Const Key_F5=&H74
Const Key_F6=&H75
Private Sub Text1_KeyDown(KeyCode As Integer,Shift As Integer)
If KeyCode=Key_F5 And Shift=ShiftKey Then
Print"Press Shift+F5"
Elself Key Code=Key_F6 And Shift=CtrlKey Then
Print"Press Ctrl+F6"
End If
End Sub
A:无任何信息 B:Press Shift+F5 C:Press Ctrl+F6 D:程序出错