Chazelle Consulting Services  

 

Your Microsoft Access Specialists  

Home
Resources
References
Contact us




 

























































 Hiding a Form from the Screen
 

To hide a form from view, attach the following code to a an Event, such as the OnClick property of a button, or the OnClose property of the form itself:

Forms!Formname.Visible = False

To unhide it, simply reopen the form. Or to do it with code, use the following:

Forms!Formname.Visible = True

Note: to hide the database window at Startup, use the Startup features under Tools | Startup and uncheck Display Database Window. Should you need to have it reappear during your session, press F11. Or, to bypass all Startup functions, start the application while pressing Shift (Shift-click).