All options are hidden

jwatts2133

New member
Local time
Yesterday, 19:44
Joined
Jun 19, 2009
Messages
1
I have altered my database to hide all options without thinking that I wouldn't even be able to see them. Anyone know how to unhide these items I have disabled at startup?
 
Create a button on a new form (or a new button on an existing form) and put the following behind the OnClick event
Code:
    Dim I As Integer
    For I = 1 To CommandBars.Count
    CommandBars(I).Enabled = True
    Next I
Click the button and you should get all your menus back.
 
Hi just go to (Customise quick access toolbar in the title bar) its a really small dropdown arrow next to the windows button

Select more comands

select current database

go to ribbon and tool bar options

click allow full list and allow default sortcut menus

click ok

close and reopen the database


(this is only for 2007)
 

Users who are viewing this thread

Back
Top Bottom