disable the form veiw tool bar

  • Thread starter Thread starter AKA Sparkticus
  • Start date Start date
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.

Jim
 
To turn off a toolbar you need to decide when you want
that toolbar turned off.

If it's during normal use (not development) then clear
the 'Allow Built-in Toolbars' check box under
Tools/Startup.

Otherwise you'll need to use some vba or a macro in a
form's OnActivate event to set ShowToolBar 'toolbarname'
value.

Use the Access Help to look up ShowToolBar or just search
for toolbar. It's fairly descriptive and has some
examples.

Good luck

Nick Coe
Lincoln UK
 
Back
Top