Tab Index Problem

V

vegathena

I am trying to set the tab index values for my form controls. The
problem is that even though I enter a certain value for a particular
tab index, it is not saved. It seems to be automatically reassigned.

I have tried starting from the end and assigning a high number to
those controls so that the lower indeces are available. The tab index
values for the controls throughout the form are still being reassigned
though :(

How can I get the index values that I assign to stay?

Thanks in advance for your help.
 
B

boblarson

Instead of trying to set the tab index, open VIEW > TAB ORDER and drag and
drop the items into the correct order. That should get it set right for you.
--
Bob Larson
Access World Forums Super Moderator
Utter Access VIP
Tutorials at http://www.btabdevelopment.com
__________________________________
If my post was helpful to you, please rate the post.
 
J

John W. Vinson

PROBLEM REASON: I think the IE GUI automatically has its own controls set with their tabindex=o
SOLUTION: Have all your tab indexes set higher than zero (0). E.g FirstItem tabindex=1, SecondItem tabindex=2, ...
Then on page load do this: FirstItem.focus()
EXPLANATION: Setting focus to start with a control item with tabindex number higher than the values of IE GUI controls ignors such stops at url bars etc.
I hope this helps.
~Ted Atogwe
http://www.survivenigeria.com


EggHeadCafe - .NET Developer Portal of Choice
http://www.eggheadcafe.com

Do these questions have anything whatsoever to dow with Microsoft Access, the
subject of this newsgroup? I suggest you repost in an Internet Explorer
newsgroup.

John W. Vinson [MVP]
 

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