Hi again
Alterrnatively you could put the code in the ThisWorkbook code module
ie
Code:
Private Sub Workbook_SheetBeforeRightClick(ByVal Sh As Object, ByVal Target As Excel.Range, Cancel As Boolean)
MsgBox "Command not allowed.", vbCritical, "Command Disabled"
Cancel = True
End Sub
This will disable all sheets right click.
MTB