S
Steve
HYCH
Is there a way of disabling the Tools Option on the menu bar with VBA?
Steve
Is there a way of disabling the Tools Option on the menu bar with VBA?
Steve
You can try something like:
Application.CommandBars("Worksheet menu bar").Controls("Tools").Enabled = False
and later to toggle it back:
Application.CommandBars("Worksheet menu bar").Controls("Tools").Enabled = True
It'll be effective until the user resets the toolbar.