Using this syntax in ThisWorkBook:
Private Sub Workbook_Open()
'These commands disable the menu bar.
Application.ExecuteExcel4Macro "SHOW.TOOLBAR(""Ribbon"",False)"
End Sub
Private Sub Workbook_BeforeClose(Cancel As Boolean)
'These commands re-enable the menu bar so other workbooks
'won't be affected.
Application.ExecuteExcel4Macro "SHOW.TOOLBAR(""Ribbon"",True)"
End Sub
Use ALT / F11 to get to the VBEditor. From there you can comment out the
two commands in ThisWorkbook, save the workbook, then close it.
When you reopen the workbook the menu will be available again allowing you to
work on the contents.
Bookmarks