I have a Form with 5 textbox. When I press tab I want each of them to be selected in a particular order like tbox1, tbox5, tbox2,…
How do I do it?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You’ll want to set the
.TabIndexproperty on the controls.This will allow you to set the order in which they are focused when tabbing through the UI. Keep in mind, however, that there is no unique constraint on this property among the controls. You can set multiple controls to have the same
TabIndexand the ordering of those particular controls would revert back to whatever it would be by default with no explicit tab ordering.