MalcolmGill
New Member
- Joined
- Aug 9, 2019
- Messages
- 12
Hi gurus in the sky
I use form control buttons to make life easy for my users. I want to disable a right click totally. I have discovered how to disable the "cut, copy, paste etc" menu by pasting into ThisWorkbook
Private Sub Workbook_SheetBeforeRightClick(ByVal Sh As Object, ByVal Target As Range, Cancel As Boolean)
Cancel = True
End Sub
But having achieved that, a right click on the form control button still shows a "Move here, copy here, cancel" menu.
I want to suppress the use of the right click button across the whole workbook including form buttons. Any thoughts oh wise ones?
I use form control buttons to make life easy for my users. I want to disable a right click totally. I have discovered how to disable the "cut, copy, paste etc" menu by pasting into ThisWorkbook
Private Sub Workbook_SheetBeforeRightClick(ByVal Sh As Object, ByVal Target As Range, Cancel As Boolean)
Cancel = True
End Sub
But having achieved that, a right click on the form control button still shows a "Move here, copy here, cancel" menu.
I want to suppress the use of the right click button across the whole workbook including form buttons. Any thoughts oh wise ones?