Excel Friends,
I got this code to disable/enable Right Click on the Sheet Tab:
It worked fine, but I got out of excel totally, and it is still Disabled in all my workbooks. Enabling it is driving me crazy!
I also need hot to disable and enable Delete Sheet and Hide/Unhide sheets, in the menu, not just the Right Click.
Can somebody help!
Thanks!
I got this code to disable/enable Right Click on the Sheet Tab:
Code:
Private Sub Workbook_Activate()
Application.CommandBars("Ply").Enabled = False
End Sub
Private Sub Workbook_Deactivate()
Application.CommandBars("Ply").Enabled = True
End Sub
It worked fine, but I got out of excel totally, and it is still Disabled in all my workbooks. Enabling it is driving me crazy!
I also need hot to disable and enable Delete Sheet and Hide/Unhide sheets, in the menu, not just the Right Click.
Can somebody help!
Thanks!