disable right click menu

  • Thread starter Thread starter JT
  • Start date Start date
J

JT

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.
 
Hi JT,

I'm assuming that you've used the Worksheet_BeforeRightClick event. If
that's the case, insert this line of code somewhere in that routine:

Cancel = True

--
Regards,

Jake Marx
MS MVP - Excel
www.longhead.com

[please keep replies in the newsgroup - email address unmonitored]
 
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)
 
Add

Cancel = True

One of the arguments of the sub is cancel and that refers to what would you
like to do with the normal drop down menu display.

HTH
 
oops. missed a bit

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


--

HTH

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

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top