Tab Order in Forms

  • Thread starter Thread starter Erika
  • Start date Start date
E

Erika

I have created and form and protected it, when I am tabing through the fields
it is jumping to various fields instead of going in order. How do I get it
to go in order so I can press tab and go through the fields in order?
 
There is a property called "TabIndex" associated with controls on a form.
Changing this should change the Tab order.
Note that it expects to see "0" as the first number.
Technically, it should do them in order even if the first number isn't zero,
but I ran into a bug previously (in Excel, though) which was fixed by
changing the first control's Tabindex to "0".
 
How do I find the TabIndex and change it to "0" - I just inserted the field
by using the forms toolbar. I can get into the properties but I don't see
TabIndex.
 

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

Back
Top