Hi, Rod.
Is the only way to jump to a specific control via manipulating tab
stops?
There are three ways: SetFocus to the specific control, set the controls
between the start and destination controls with the TabStop Property to
FALSE, or swap the TabIndex Properties of the control to be jumped over with
the TabIndex of a control that resides after the control to be jumped to.
For example:
If (Me!textbox1.Value = "Message") Then
Me!textbox2.TabIndex = 4
Else
Me!textbox2.TabIndex = 2
End If
This example will jump to the control with TabIndex = 3 when textbox1 =
"Message." Additional tabbing will jump to the control with the original
TabIndex = 4, then back to the control that was skipped. One may put this
"jumped over" control at the end of the Tab Order list, but tabbing will
eventually reach it.
The best way is usually to set focus on the necessary control.
HTH.
Gunny
See
http://www.QBuilt.com for all your database needs.
See
http://www.Access.QBuilt.com for Microsoft Access tips.
(Please remove ZERO_SPAM from my reply E-mail address so that a message will
be forwarded to me.)
- - -
If my answer has helped you, please sign in and answer yes to the question
"Did this post answer your question?" at the bottom of the message, which
adds your question and the answers to the database of answers. Remember that
questions answered the quickest are often from those who have a history of
rewarding the contributors who have taken the time to answer questions
correctly.