Subform loading only under certain circumstances

  • Thread starter Thread starter Tara
  • Start date Start date
T

Tara

I am looking for a way to make a subform only open up
when a certain button on the main form has been clicked.
I'm sure there is a way to do this, but I can't seem to
find a reference to it anywhere. Any help is appreciated!

Tara
 
Tara

Possibly this is whay you mean?... Set the Visible property of the
subform control to No, and then on the Click event of the "certain button":
Me.NameOfSubform.Visible = True
 
Back
Top