Visible Property

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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?
 
GOL said:
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?

I don't know if there is a viable property for the form, but there
should be one for controls on the form as well as sections of a form.
 
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"
 
Back
Top