Visible Property

G

GOL

Where is the visible/not visible property for a form and a subform? I have
clicked on the properties and it is no where to be found. And also,what
macro would you use to set the value of a form to visible/not visible by
clicking a command button?
 
X

xRoachx

As far I as I know, this has to be done through code like this:

Me.Visible = False
Forms!FormName.Visible = False

To make it visible again, set it equal to "true"
 
Top