要选定两个不连续的文件组,先按shift选择第一组,然后按Ctrl选择第二组的第一个文件,最后按( )单击第二组的最后一个文件即可。
A:Ctrl+Space B:Ctrl+Alt C:Ctrl+Shift D:Shift+Space
使用windows2000时,可按( )键或alt+shift键在英文或各种输入法间切换。
A:ctrj+space B:ctrl+shift C:alt+space D:esc
下列应用Shift键的操作有误的是( )。
A:按方向键可逐个像素移动选区,按住Shift键同时移动选区则可以10个像素为单位移动选区 B:使用椭圆形选取工具按住Shift键并拖动鼠标则可获得圆形选区 C:确定一个选区后,按住Shift键,此时可用选取工具选择想要增加的选区 D:按住Shift的同时,单击工具箱中的工具,就可以隐含和非隐含的工具之间循环切换
有如下事件过程,当同时按下转换键Shift和功能键F5时其最后输出的信息是 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" ElseIf KeyCode=Key_F6 And Shift=CtrlKey Then Print"Press Ctrl+F6" End If End Sub
A:无任何信息 B:Press Shift+F5 C:Press Ctrl+F6 D:程序出错
有如下事件过程,当同时按下转换键Shift和功能键F5时其最后输出的信息是 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" ElseIf KeyCode=Key_F6 And Shift=CtrlKey Then Print"Press Ctrl+F6" End If End Sub
A:无任何信息 B:Press Shift+F5 C:Press Ctrl+F6 D:程序出错
有如下事件过程,当同时按下转换键Shift和功能键F5时其最后输出的信息是( )。
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"
ElseIf KeyCode=Key_F6 And Shift=CtrlKey Then
Print"Press Ctrl+F6"
End If
End Sub
A:无任何信息 B:Press Shift+F5 C:Press Ctrl+F6 D:程序出错
有如下事件过程,当同时按下转换键Shift和功能键F5时其最后输出的信息是( )。
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"
ElseIf KeyCode=Key_F6 And Shift=CtrlKey Then
Print"Press Ctrl+F6"
End If
End Sub
A:无任何信息 B:Press Shift+F5 C:Press Ctrl+F6 D:程序出错