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:
But can't get it to work.
Any ideas?
Regards.
Steve.
PHP:
Private Sub FormField1_KeyDown(KeyCode As Integer, Shift As Integer)
If KeyCode = vbKeyTab Then
Me.frmSubForm.Form!FormField2.SetFocus
End If
End Sub
But can't get it to work.
Any ideas?
Regards.
Steve.
Last edited: