Adding a new text box to user form

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello Somewhere in the middle of a user form I created I added a new text
box . When I test the user form the cursor skips the new text box , when the
cursor gets to the end then it goes back to the new text box. I want the
cursor to go from text box to tex box without skipping any text box. How do
I correct this thanks
 
They go in order. So the new Text Box is probably like TextBox8 or something
above the next TextBox. You'll have to change the order in the UserForm Sub
or just change the TextBoxes around.
 
While you're in design mode in the VBE, select a textbox.
Then hit F4 to see its properties.

Take a look at the .tabstop and .tabindex properties.

(Assuming you're writing about tabbing between the controls.)
 
Dave Thank you thank you problem solved

Dave Peterson said:
While you're in design mode in the VBE, select a textbox.
Then hit F4 to see its properties.

Take a look at the .tabstop and .tabindex properties.

(Assuming you're writing about tabbing between the controls.)
 
Back
Top