Hi everyone I just had a quick question about how to maximize my database. I want the controls to be hidden ex. file edit etc. I just want the switchboard to be full screen and the form. Can someone explain to me how you do this.
You can hide the database container window by selecting the "Display Database Window" option under Tools Menu/Startup.
However, if you need to show or hide the window on demand afterwards, you can use one of these ways.
To show the database window, run
Docmd.SelectObject acTable, , True
To Hide the database window, run
Docmd.SelectObject acTable, , True
Docmd.RunCommand acCmdWindowHide