Adding a new text box to user form

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
 
G

Guest

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.
 
D

Dave Peterson

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.)
 
G

Guest

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.)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top