when a check box is clicked pop up a sub form??

  • Thread starter Thread starter reservedbcreater
  • Start date Start date
R

reservedbcreater

im having trouble doing this

i want the subform invisible but when the check box is cliked on the
parent for it pops up

i have the Visible property on the subform to No

here is my code that in on the parent form:

Private Sub Check0_Click()

If Me.Check0 = True Then
Me.subFrm.Visible = Yes

files
End If
End Sub
 
Back
Top