Tab Stops

  • Thread starter Thread starter JT
  • Start date Start date
J

JT

On a form I have 2 textboxes within a frame. I also have 5 buttons for the
user.

I have the tabstops setup so that it flows from the textboxes through the 5
buttons. When you tab off of the last button, I want it to go to the first
textbox.

However, the user has to tab an extra time to get to the first textbox. I
think it is going to the frame that contains the 2 textboxes.

Is there anyway to make the tab skip the frame and go to the first textbox
from the last button?

Thanks for the help....
 
Try using the control exit event to drive focus back to the required
control......

Private Sub TextBox2_Exit(ByVal Cancel As MSForms.ReturnBoolean)
TextBox1.SetFocus
End Sub
 
Back
Top