devxlogo

Set Tab Order in a Hurry

Set Tab Order in a Hurry

Setting up the control tab order can be unruly-a sore point with many VB developers. In fact, in Jeff Hadfield’s recent editorial, “Five Things You Hate About VB6” [Editor’s Note, VBPJ April 1999], it’s listed as one of the top five things people hate most about VB.

I’ve never understood this; it’s never been a big deal to me. But many people are shocked when I show them how I lay out tab orders, and are even embarrassed they didn’t think of it themselves. I don’t worry about the tab order until I’ve placed all the controls on the form, then I order them.

Now for the slam in the face: Think backwards. While viewing your form, click on the control you want to be the last control in the tab order. Highlight the TabIndex property in the Properties window and change it to zero. Now click on the control that you want to have the focus before that one, and repeat the process. Repeat this process until you reach the control that should have focus when the form opens.

Here’s why this works: VB does most of the work for you. VB automatically reassigns the tab orders if you change the TabIndex property of a control. Because you started by setting the tab index of the last control first, VB increments the last control’s tab index as you set the rest of the controls. It’s a heck of a lot easier to set the tab index to zero while you’re going through the order. I can rip through a form with more than 50 controls in about two minutes using this technique.

See also  Why ChatGPT Is So Important Today
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist