Hey all, I am trying to find a way to tab from a field on a Parent form to a field on its child form. I am trying to do something like:
Private Sub FormField1_KeyDown(KeyCode As Integer, Shift As Integer)
If KeyCode = vbKeyTab Then
Me.frmSubForm.Form!FormField2.SetFocus
End If...