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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top