Changing the Tab order

mpdillon

Member
Joined
Feb 17, 2005
Messages
20
Location
Glen Mills, PA
Programming Experience
Beginner
I designed a web form in VB.Net 2003. After I was done, I realized that I need to add a text box in the middle of the other text boxes. I moved things around and added the new text box. However, when the form is displayed the user inputs skips over the inserted text box. I have looked around the IDE and not found anything. I have moved the lines in the HTML file to be in the correct order. I have changed the Z-Order in the HTML file(paritally changed it). But I have not affected the tab order. Any suggestions?
thanks,
pat
 
I've never developed a WebForms app so I don't know if it's the same, but in the WinForms designer you select View | Tab Order to set the tab order visually, or manually set each Control's TabIndex in the Properties window. Note that, if using the menu option, press ESC when you're done.
 
Back
Top