I created a code that would take me from the last field in a subform and take me to the next record first field on the parent form. Unfortunately, there is a little snag if I try to use the mouse to click into the subform from the parent form. It takes me to the next record again instead of just allowing me to click into the subform for that record. If I just tab, everything is fine, but this db is being used by others that may not remember or understand to use the tab function. Is there a way to fix this code?
Thanks in advance!
Thanks in advance!
Code:
Private Sub Remove_Account_From_LostFocus() Me.Parent![SAP Postal Code].SetFocus DoCmd.GoToRecord , , acNext End Sub
Comment