Re: skipping tab index
From: Allen Browne (AllenBrowne_at_SeeSig.Invalid)
Date: 06/19/04
- Next message: Steve Schapel: "Re: Another Dbl Click Conundrum"
- Previous message: Steve Schapel: "Re: date"
- In reply to: emidkiff: "skipping tab index"
- Messages sorted by: [ date ] [ thread ]
Date: Sat, 19 Jun 2004 13:10:59 +0800
Use the AfterUpdate event procedure of the check box to SetFocus to where
ever you wish to jump to.
This example jumps to a control named SomePlaceElse if the user checks the
box named chk1, but not if they uncheck it:
Private Sub chk1_AfterUpdate()
If Me.chk1.Value Then
Me.SomePlaceElse.SetFocus
End If
End Sub
-- Allen Browne - Microsoft MVP. Perth, Western Australia. Tips for Access users - http://allenbrowne.com/tips.html Reply to group, rather than allenbrowne at mvps dot org. "emidkiff" <anonymous@discussions.microsoft.com> wrote in message news:1e8dd01c4557b$63398970$a401280a@phx.gbl... > I have a rather large form with about 60 or so text > boxes. These text boxes are grouped in relation to each > other. I want my user to be able to skip certain groups > of text boxes by selecting a check box or something when > there is nothing for them to enter. I think that would > save them a lot of time. I am having a problem in finding > a way to tell then check box that once it is clicked, to > skip from tab index 13 to 27 or something like that? > Anyone have any ideas on how I could do this?
- Next message: Steve Schapel: "Re: Another Dbl Click Conundrum"
- Previous message: Steve Schapel: "Re: date"
- In reply to: emidkiff: "skipping tab index"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|