View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Bob Phillips[_6_] Bob Phillips[_6_] is offline
external usenet poster
 
Posts: 11,272
Default disable right click menu

Put this in the ThisWorkbook code module

Private Sub Workbook_SheetActivate(ByVal Sh As Object)
If Sh.Name = "Sheet1" Then
CommandBars("Cell").Enabled = False
Else
CommandBars("Cell").Enabled = True
End If
End Sub


--

HTH

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


"JT" wrote in message
...
I have a macro where when I right click on a cell, I get a
form to display through a private sub. However, once the
form is closed, the "usual" menu (cut, copy, insert, etc.)
you get when you right click is displayed.

Is there a way to disable the "usual" menu from appearing
on this worksheet only?

Thanks for the help.