View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Ron de Bruin Ron de Bruin is offline
external usenet poster
 
Posts: 11,123
Default Disable Move or Copy functionality

Hi

You can disable the whole menu like this
Application.CommandBars("Ply").Enabled = False

Or only the Move Copy
Application.CommandBars("Ply").FindControl(ID:=848 ).Enabled = False

See also
http://www.rondebruin.nl/menuid.htm

--
Regards Ron de Bruin
http://www.rondebruin.nl



"TimN" wrote in message ...
I have disabled the command control on the menu bar for:

File / File Save As
and for Edit / Move or Copy Sheet

How can I disable the "Move or Copy" functionality you get by right clicking
the sheet tab at the bottom of a spreadsheet?

Thanks for any suggestions.