TOOLBAR

  • Thread starter Thread starter John Drake
  • Start date Start date
J

John Drake

I have disabled the Database toolbar on the customers database. Is there any
way of getting it back again?
 
John Drake said:
I have disabled the Database toolbar on the customers database. Is there
any
way of getting it back again?

The visibility of the Menu Bar is controlled by the Enabled property (not
the Visible property)

Public Sub ShowMenuBar(blnVisible As Boolean)
CommandBars("Menu Bar").Enabled = blnVisible
End Sub

Just put:
ShowMenuBar False ' (or True)
in your Immediate window (Ctrl+G).

The same will apply to any other tool bar, although once the menubar is
enable, you should be able to get to the toolbars from:

Tools >>> Startup
 
The problem is that I have set user level account levels and password and
deselected the "Display Database Window" under the TOOLS, Start-Up Menu. And
now I can not get the Database Window Back.
 
Back
Top