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
|