Visible Property

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?
 
J

Joseph Meehan

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.
 
G

Guest

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"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top