有如下事件过程,当同时按下转换键Shift和功能键F5时其最后输出的信息是( )。Const ShiftKey=1Const CtrlKey=2Const Key_F5=&H74Const Key_F6=&H75Private Sub Text1_KeyDown(KeyCode As Integer,Shift As Integer)If KeyCode=Key_F5 And Shift=ShiftKey ThenPrint Press Shift+F5 ElseIf KeyCode=Key_F6 And Shift=CtrlKey ThenPrint Press Ctrl+F6 End IfEnd Sub
A. 无任何信息
B. Press Shift+F5
C. Press Ctrl+F6
D. 程序出错