I ran a code to hide all toolbars through an AutoExec module. (I also created a module to unhide all). Now, even though I disabled the autoexec Access opens without the Menu Bar. I did run the unhide code which did work and showed all the menu including the Menu Bar, but after I close the database and then reopen it the Menu Bar is not there and if pull up the Customize window the Menu Bar isn't listed there either.
Code used to hide commandbars:
Code used to unhide commandbars:
Code used to hide commandbars:
Code:
For i = 1 To CommandBars.Count
CommandBars(i).Enabled = False
Next i
Code:
For i = 1 To CommandBars.Count
CommandBars(i).Enabled = True
Next i