I have a form with a subform. I want the subform to not be visible unless a command button is clicked, which sets the visible property to true and the subform displays. I can set the property in design view, but what is the coding to toggle with a command button?
This does not work:
Private Sub Command56_Click()
frm_software.Visible = True
End Sub
Any help would be appreciated
This does not work:
Private Sub Command56_Click()
frm_software.Visible = True
End Sub
Any help would be appreciated