Reset Right Click Menu

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I added a command to the "right click menu" and want it remoced. How do I
remove it or restore the "right click menu" to its default state?

Thanks
 
Type this into the VBE immediate window

application.CommandBars("Cell").Reset

and enter

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
Hi

I guess you added a control in the Application.commandbars("cell").
So to remove what you added, just write down
Application.commandbars("cell").controls("yourcontrolname").delete or reset
your commandbars.

So long.
 
Ronbo

To remove.......

Application.CommandBars("Cell").Controls("Your Item").Delete


Gord Dibben Excel MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top