Cannot right click on my mouse

  • Thread starter Thread starter Zymon
  • Start date Start date
Z

Zymon

Hi there,
Need some help over herepls. Whenever i'm using excel
(XP version), i cannot right click on my mouse to access
functions like " Cut, Copy, Pate, insert rows...etc"
Wonder what had gone wrong.

Can anyone out there help me? Thi sis different when
i use WORDS or POWERPT, the right click funtion is
available . Pls assist.

Many Thx.
 
Hi Zymon,

Try this macro to fix, you will still have to identify the cause,
whether a macro that terminated, or even a bad addin.

Sub Fix_Things()
Application.DisplayAlerts = True
Application.CommandBars("Cell").Enabled = True 'rclick cell
Application.CommandBars("PLY").Enabled = True 'rclick ws tab
Application.EnableEvents = True 'may be False from a Change macro
End Sub
 
Back
Top