Subform loading only under certain circumstances

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
 
S

Steve Schapel

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
 
Top