How can i bring back the toolbar after its hidden

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

i used startup function to hide my toolbars on my database, but now i need to
re-edit it and bring the toolbar back, i cant seem to be able to do this and
the startup menu is no longer showing. how do i disable the changes i made in
the startup menu
 
D. said:
i used startup function to hide my toolbars on my database, but now i need to
re-edit it and bring the toolbar back, i cant seem to be able to do this and
the startup menu is no longer showing. how do i disable the changes i made in
the startup menu

What version of Access do you have? Did you try holding down the shift
key while double clicking on the database icon to open it?
 
You can use the Immidiate window (press Ctrl+G) and type in it

DoCmd.ShowToolbar "Tool bar name", acToolbarYes
 
"database" is the toolbar you want:

DoCmd.ShowToolbar "database"

But any toolbar or menu will do. Once you have any toolbar or menu showing,
right click in a blank toolbar space and select "customize" to see the list
of all available toolbars and menus.

(david)
 
Back
Top