D DS Apr 11, 2005 #1 What is the Syntax for making a form Visible or not? Is this correct? "Form Name".Visible = False Thanks 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] Apr 11, 2005 #2 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
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 Apr 11, 2005 #3 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 Click to expand... Thanks 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 Click to expand... Thanks DS