Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Menu toolbar disappeared

Status
Not open for further replies.

samotek

Technical User
May 9, 2005
197
BG

In my Access database i have my menu toolbar disappeared.This is the main menu and i cannot customize the toolbars nor import tables and other objects.I have tried with the following function :
DoCmd.ShowToolbar "Menu Bar", acToolbarYes
But the meny toolbar does not appear.Any help will be much appreciated
 
Is your menu available if you open the db while holding down a <SHIFT> key?

HTH RuralGuy (RG for short) acXP winXP Pro
Please respond to this forum so all may benefit
 
Have you tried Tools|Customize Toolbars tab? Could be it got unchecked there somehow....

I wondered why the baseball was getting bigger.
Then it hit me.
 
I got same issue... Wonder if MS Access Corrupt; I have 3 different versions installed 97, 2002 and 2003.

What is causing this and how can I stop it. I have a work around; but it is a pain!

Here is what I do to get menu to appear!

Function UnHideAllMenuItems()
'This will unhide all menu bars and tool bars
Dim i As Integer
For i = 1 To CommandBars.Count
CommandBars(i).Enabled = True
Next i
End Function


tia,


Steve Medvid
&quot;IT Consultant & Web Master&quot;

Chester County, PA Residents
Please Show Your Support...
 
May have solved own problem...
1. Get Menu bar to appear via code.
2. Select Customize from Tools menu.
3. Select Menu Bar and then Properties.
4. Select Reset option.

Close MS Access and Re-open... menu bar should now appear.

Wierd!


Steve Medvid
&quot;IT Consultant & Web Master&quot;

Chester County, PA Residents
Please Show Your Support...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top