Form Visible ?

  • Thread starter Thread starter DS
  • Start date Start date
D

DS

What is the Syntax for making a form Visible or not? Is this correct?

"Form Name".Visible = False

Thanks
DS
 
This makes it invisible (use True to make it visible):
Forms("FormName").Visible = False

If you want to make the form that is running the code invisible, then use
Me.Visible = False
 
Ken said:
This makes it invisible (use True to make it visible):
Forms("FormName").Visible = False

If you want to make the form that is running the code invisible, then use
Me.Visible = False
Thanks
DS
 

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

Back
Top