I can use the following to reset the worksheet menu bar.
Application.CommandBars("Worksheet Menu Bar").Reset
However, sometimes I just want to delete a specific button.
Application.CommandBars("Worksheet Menu Bar").Controls("Access Scripts").Delete
The problem is, sometimes the...