Movement within a form (1 Viewer)

REDaughdril

Registered User.
Local time
Yesterday, 19:34
Joined
Jan 23, 2000
Messages
58
I would like to be able to press a button and move to another section(field) in my form. Can this be done and what is the code. Thanks.
 

rapsr59

Registered User.
Local time
Yesterday, 18:34
Joined
Dec 5, 2007
Messages
93
If you mean another field on the same form by clicking a control then...

Code:
Private Sub cmdGotoField_Click()
    Me.ControlName.SetFocus
End Sub

Hope this helps

Richard
 

Users who are viewing this thread

Top Bottom