Tab order - Different parts of form

DJ_DEF_CON_1

Registered User.
Local time
Today, 11:38
Joined
Jan 1, 2003
Messages
40
I am having trouble moving the tab order from a Text box in the detail section of the form to a command button in the form footer. Does anyone have any ideas?

Thanks:confused:
 
Last edited:
You could use the LostFocus event of the text box...
Code:
Private Sub TextBoxName_LostFocus()
    Me.CommandButtonName.SetFocus
End Sub
but this will only move the focus to the button and you won't be able to tab back to the detail section.
HTH
IMO
 

Users who are viewing this thread

Back
Top Bottom