question about full screen

mws5872

New member
Local time
Today, 00:38
Joined
Jan 26, 2005
Messages
9
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.
 
Screen

In the On Open Event of the form put:

DoCmd.Maximize

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
 

Users who are viewing this thread

Back
Top Bottom