G
Guest
My original question was how to make a subform visible only when a related
box is checked.
The code for this was given to me by JackP, but for some reason I'm getting
the error message:
The LinkMasterFields property setting has produced this error:'Invalid
outside procedure'
The field name the check box is associated with is "Plumber".
I select the check box, click Properties, Use the Code Builder in After
Update and type the following:
Private Sub Check36_AfterUpdate()
If Me!Plumber = True Then
Me!MembersSubform.Visible = True
Else
Me!MembersSubform.Visible = False
End If
End Sub
Please help.
Thank you!
Blair
box is checked.
The code for this was given to me by JackP, but for some reason I'm getting
the error message:
The LinkMasterFields property setting has produced this error:'Invalid
outside procedure'
The field name the check box is associated with is "Plumber".
I select the check box, click Properties, Use the Code Builder in After
Update and type the following:
Private Sub Check36_AfterUpdate()
If Me!Plumber = True Then
Me!MembersSubform.Visible = True
Else
Me!MembersSubform.Visible = False
End If
End Sub
Please help.
Thank you!
Blair