|
在演示模式下, 无法用tab键切换幻灯片中的文本框控件的焦点. 具体操作:光标在TextBox1时, 按tab键, 光标没有移动到TextBox2中. (文本框的TabStop属性为True)恳请大家帮忙, 谢谢!
曾试过但失败的方法:
1. Private Sub TextBox1_KeyPress(KeyAscii As Integer)
If KeyAscii = Asc("13") Then
TextBox2.SetFocus
End If
End Sub
2. Private Sub TextBox1_KeyDown(ByVal KeyCode As MSForms.ReturnInteger, ByVal Shift As Integer)
If KeyCode = 13 Then
TextBox2.SetFocus
End if
End Sub |
|