Hi people.
I have a user that has trouble tabbing textbox to textbox sometimes. The tabkey behavior, enterkey behavior, and multiline are set to false.
I beleive I have set the tabstop and tabindex properties correctly also.
My question is, is there a way to "hard" code the tab key in the textbox change event sub. For example:
Private Sub txtName_Change()
If Chr(9) Then 'Test to see if Tab key was hit
txtAddress.SetFocus ' move to the next textbox
End If
End Sub
Also when setting the tab indexes, should you start with 1 or 0. I currently have several controls which are disabled that have 0 as the tab index.
Thank you, DAVE
I have a user that has trouble tabbing textbox to textbox sometimes. The tabkey behavior, enterkey behavior, and multiline are set to false.
I beleive I have set the tabstop and tabindex properties correctly also.
My question is, is there a way to "hard" code the tab key in the textbox change event sub. For example:
Private Sub txtName_Change()
If Chr(9) Then 'Test to see if Tab key was hit
txtAddress.SetFocus ' move to the next textbox
End If
End Sub
Also when setting the tab indexes, should you start with 1 or 0. I currently have several controls which are disabled that have 0 as the tab index.
Thank you, DAVE