Remove all command bars

  • Thread starter Thread starter Diane
  • Start date Start date
D

Diane

How do I get rid of all command bars?

I have unchecked everything on the Startup options - but I
still get the "Database" and the general "File-Edit-
View..." tool bars.
 
Diane said:
How do I get rid of all command bars?

I have unchecked everything on the Startup options - but I
still get the "Database" and the general "File-Edit-
View..." tool bars.

Function ShowMenu()
On Error Resume Next
DoCmd.ShowToolBar "Menu Bar", acToolbarYes
End Function

Function HideMenu()
On Error Resume Next
DoCmd.ShowToolBar "Menu Bar", acToolbarNo
End Function

Function ShowToolBar()
On Error Resume Next
DoCmd.ShowToolBar "Form View", acToolbarYes
End Function

Function HideToolBar()
On Error Resume Next
DoCmd.ShowToolBar "Form View", acToolbarNo
End Function
--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access downloads:
http://www.datastrat.com
http://www.mvps.org/access
 
Back
Top