I have a main form called frm_Pickups tied to a table called Pickups and a subform called DODAAC subform tied to a table named DODAAC.
On frm-Pickups, I have four fields named DODAAC1, DODAAC2, DODAAC3, and DODAAC4.
What I would like is to have the DODAAC subform appear whenever the user enters a DODAAC that isn't present in the DODAAC table. They could then add the necessary data to the DODAAC table (via the subfrom) and continue adding data to the main form.
To achieve this goal, I tried a few options. On frm_Pickups, I also have unbound, text fields which show the city and state for the DODAAC entered. I tried to use the following code to check if those fields are blank (should only occur if the DODAAC doesn't exist in the DODAAC table).
Private Sub DODAACCS_AfterUpdate()
Select Case
Case Me.City1 = Null
Me.DODAAC_subform.Visible = True
Case Me.City2 = Null
Me.DODAAC_subform.Visible = True
Case Me.City3 = Null
Me.DODAAC_subform.Visible = True
Case Me.City4 = Null
Me.DODAAC_subform.Visible = True
End Select
End Sub
I keep getting a syntax error.
Probably a newb mistake; but, I can't seem to figure it out. Any help is greatly appreciated.
Paul.
On frm-Pickups, I have four fields named DODAAC1, DODAAC2, DODAAC3, and DODAAC4.
What I would like is to have the DODAAC subform appear whenever the user enters a DODAAC that isn't present in the DODAAC table. They could then add the necessary data to the DODAAC table (via the subfrom) and continue adding data to the main form.
To achieve this goal, I tried a few options. On frm_Pickups, I also have unbound, text fields which show the city and state for the DODAAC entered. I tried to use the following code to check if those fields are blank (should only occur if the DODAAC doesn't exist in the DODAAC table).
Private Sub DODAACCS_AfterUpdate()
Select Case
Case Me.City1 = Null
Me.DODAAC_subform.Visible = True
Case Me.City2 = Null
Me.DODAAC_subform.Visible = True
Case Me.City3 = Null
Me.DODAAC_subform.Visible = True
Case Me.City4 = Null
Me.DODAAC_subform.Visible = True
End Select
End Sub
I keep getting a syntax error.
Probably a newb mistake; but, I can't seem to figure it out. Any help is greatly appreciated.
Paul.