bjsteyn
06-13-2008, 11:23 AM
Hey i disabled all my menu's and toolbars in startup, as I wanted to. But how do I get it back?? The startup menu item is gone. Feel very stupid right now. :-(
|
View Full Version : SOS plz Help bjsteyn 06-13-2008, 11:23 AM Hey i disabled all my menu's and toolbars in startup, as I wanted to. But how do I get it back?? The startup menu item is gone. Feel very stupid right now. :-( ASherbuck 06-13-2008, 11:36 AM Hold shift while opening ? bjsteyn 06-13-2008, 11:45 AM Your a life saver. Thanks. :-) bj dreamdelerium 06-15-2008, 11:28 PM i also always have a procedure i can run that will reset everything if i screw up: Function DebugMe() On Error GoTo errorhandler Dim i As Integer For i = 1 To CommandBars.Count CommandBars(i).Enabled = True Next i 'reset all toolbars DoCmd.SelectObject acTable, , True 'unhide the table window Application.CommandBars("MainMenuBar").Enabled = True 'show my bar DoCmd.ShowToolbar "MainMenuBar" Application.CommandBars.DisableAskAQuestionDropdow n = True 'shows the askquestion in toolbar Application.CommandBars.DisableCustomize = False 'allows customizing again errorhandler: If Err.Number = 0 Then Else MsgBox (Err.Description) End If End Function |