Carl_Maddox Posted May 31, 2005 Posted May 31, 2005 Hi,I've customed the 'Worksheet Menu Bar' items in Excel 97. I wanted to disable the right mouse click and the double click for the main menu bar, thus, providing protection.I disabled the right mouse click by:Application.CommandBars("Toolbar List").Enabled = Falsewhich was fine.I then disabled the double click by:Application.DoubleClick = "DisableDB"Sub DisableDB()Application.CommandBars("Toolbar List").Enabled = FalseEnd SubMy problem is, I have now set Application.DoubleClick = "", however, the double click returned but my right mouse click (for the pop up menu) on a worksheet is not working.Any ideas would be appreciated.Many Thanks,Carl
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now