hide a form

G

Guest

I have just started using Access 2003. I want to hide a form. When I look at
the Properties for a form it does not include Visible, individual control
properties do, as does the Detail section but not the form as a whole. How do
I hide the form?
 
R

Rick Brandt

Sue said:
I have just started using Access 2003. I want to hide a form. When I
look at the Properties for a form it does not include Visible,
individual control properties do, as does the Detail section but not
the form as a whole. How do I hide the form?

If you open it with code you can use...

DoCmd.OpenForm "FormName", , , , , acHidden

Otherwise you can place code in the Open event...

Me.Visible = False
 

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