Excel Right-Mouse Click

  • Thread starter Thread starter Andrew C
  • Start date Start date
A

Andrew C

Hi,

Does anyone know if is possible to customise or disable
the right mouse click pop-up menu in Excel 2002 - I want
to stop users of a worksheet from being able to carry out
the cut function from this popup menu.

Cheers,

Andrew
 
How about one of these:

Application.CommandBars("cell").Controls("cut").Enabled = False

Application.CommandBars("cell").Controls("cut").Visible = False

remember to set it back when the user swithces to a new worksheet or a new
workbook--it's an application setting.
 
Back
Top