Mouse right click problem

A

Anthony

Hi,

I seem to have disabled my mouse right click function - which I desp need
back - whilst using my excel - any ideas how to get it back

thanks
 
D

DNA

In Control Panel, double-click on the Mouse icon and verify the properties
for the various buttons on your mouse.

HTH
 
J

Jim Rech

If a macro disabled the right mouse button in Excel you can reset it by
running this code:

CommandBars("Cell").Reset

Another way is to delete (or move) your toolbar file (with Excel closed).
This is named something like Excel.xlb and is typically found in a folder
like:

C:\Documents and Settings\<Your login name>\Application Data\Microsoft\Excel
 
A

Anthony

thanks Jim - I'll give that a go

Jim Rech said:
If a macro disabled the right mouse button in Excel you can reset it by
running this code:

CommandBars("Cell").Reset

Another way is to delete (or move) your toolbar file (with Excel closed).
This is named something like Excel.xlb and is typically found in a folder
like:

C:\Documents and Settings\<Your login name>\Application Data\Microsoft\Excel
 
Top