Form Visible ?

D

DS

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

"Form Name".Visible = False

Thanks
DS
 
K

Ken Snell [MVP]

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
 
D

DS

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
 
Top