hide a form

  • Thread starter Thread starter Guest
  • Start date Start date
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?
 
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
 
Back
Top