R REDaughdril Registered User. Local time Today, 16:38 Joined Jan 23, 2000 Messages 58 Dec 31, 2008 #1 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.
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.
R rapsr59 Registered User. Local time Today, 15:38 Joined Dec 5, 2007 Messages 93 Dec 31, 2008 #2 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
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