Here is how you hide the top menu bar and maximize the
applicationm and form. Maybe someone else will have
something for hiding the Start bar.
First you need to maximize the application
In code
DoCmd.RunCommand acCmdAppMaximize
In macro
Action RunCommand=
Command AppMaximize
or
In the Activate Event of the Switchboard Form, use the
statement:
DoCmd.Maximize
Maximize a form
In code
after the form is open
docmd.maximize
In a macro
Action Maximize
To hide top menubar
1. Open the form for which you want to remove a menu bar,
and View menu, click Design View.
2. If the property sheet is not already visible, click
Properties on the View menu.
3. In the property sheet of the form , click the Other tab.
4. In the MenuBar property box, type =1.
5. On the View menu, click
Form View.
Note that the menu bar is not present.
Chris