multipage tabindex

G

Guest

One more question on multipage forms. I have a 4 page multipage form. I
have a change event where I set the tabindex on every control on each page.
This works great except that with one exception. After it tabs through all
of the controls, it tabs to the page name. Is there a way to prevent it from
doing this? I just want it to tab through the controls and not the actual
page tab as well.

Thanks again for all of the help............
 
L

Leith Ross

Hello JT,

The MulitPage control class doesn't expose the TabIndex property for
given Page in VBA. So you can avoid tabbing back to the Page name.

Sincerely,
Leith Ros
 
L

Leith Ross

Hello JT,

The MulitPage control class doesn't expose the TabIndex property for
given Page in VBA. So you can't avoid tabbing back to the Page name.

Sincerely,
Leith Ros
 
T

Tom Ogilvy

If you aren't going to use the tabs (an assumption), why not make them
disappear.

Multipage1.Style = fmTabStyleNone
 
L

Leith Ross

Hiding the tabs would defeat the purpose of the control being a
Multi-Tab, would it not?

Leith
 
T

Tom Ogilvy

If the purpose is to have the user make the selection of which page is
visible, then yes. But there are many other purposes for a multitab. If
movement between tabs (such as a wizard) is controlled by code, then hiding
the tabs may be a plus.
 

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