Main Form is called frm_pickups tied to table Pickups
Sub Form is called DODAAC_subform tied to table DODAAC
DODAAC_subform is hidden until the user enters data in the control on the main form which doesn't exist in the table DODAAC.
Private Sub DODAACCS_LostFocus()
If IsNull(Me.City1) Then
Me.DODAAC_subform.Visible = True
Me.DODAAC_subform.SetFocus
DoCmd.GoToRecord acDataForm, "DODAAC_subform", acNewRec
Else
Me.DODAAC_subform.Visible = False
End If
End Sub
As you can see, I'm trying to SetFocus to DODAAC_subform and create a new record on it. Unfortunately, I keep getting a debug error 2110 which indicates DODAAC_subform is still invisible.
I'd like when user enters DODAAC that doesn't exist in the table,
1) force a new record in DODAAC table,
2) set the DODAAC field on the subform equal to the user-entered data from the main form,
3) once the user finishes entering the new data in DODAAC, return focus to the next field on the main form and make DODAAC_subform invisible again.
Thanks in advance for helping an old excel junkie learn Access
Sub Form is called DODAAC_subform tied to table DODAAC
DODAAC_subform is hidden until the user enters data in the control on the main form which doesn't exist in the table DODAAC.
Private Sub DODAACCS_LostFocus()
If IsNull(Me.City1) Then
Me.DODAAC_subform.Visible = True
Me.DODAAC_subform.SetFocus
DoCmd.GoToRecord acDataForm, "DODAAC_subform", acNewRec
Else
Me.DODAAC_subform.Visible = False
End If
End Sub
As you can see, I'm trying to SetFocus to DODAAC_subform and create a new record on it. Unfortunately, I keep getting a debug error 2110 which indicates DODAAC_subform is still invisible.
I'd like when user enters DODAAC that doesn't exist in the table,
1) force a new record in DODAAC table,
2) set the DODAAC field on the subform equal to the user-entered data from the main form,
3) once the user finishes entering the new data in DODAAC, return focus to the next field on the main form and make DODAAC_subform invisible again.
Thanks in advance for helping an old excel junkie learn Access
