ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Disable sheets tabs right mouse button! (https://www.excelbanter.com/excel-programming/305251-disable-sheets-tabs-right-mouse-button.html)

Andoni[_2_]

Disable sheets tabs right mouse button!
 
I have a workbook, I have to protect the workbook from copy past
cut.... this is already done and working.


My problem:

1) How is it possible to disable the right mouse menu appearing whe
you are over the sheet tabs and you right click the mouse?

If i don't do yhis my previous work is useless!

And despite cut copy and paste are disable, the option copy & copy an
move is still enable from the sheet tabs right mouse buton!


Many thank

--
Message posted from http://www.ExcelForum.com


Frank Kabel

Disable sheets tabs right mouse button!
 
Hi
put the following code in your worksheet module:

Private Sub Worksheet_BeforeRightClick(ByVal Target As Range, Cancel As
Boolean)
Cancel = True
End Sub



--
Regards
Frank Kabel
Frankfurt, Germany


I have a workbook, I have to protect the workbook from copy paste
cut.... this is already done and working.


My problem:

1) How is it possible to disable the right mouse menu appearing when
you are over the sheet tabs and you right click the mouse?

If i don't do yhis my previous work is useless!

And despite cut copy and paste are disable, the option copy & copy

and
move is still enable from the sheet tabs right mouse buton!


Many thanks


---
Message posted from http://www.ExcelForum.com/



Bob Phillips[_7_]

Disable sheets tabs right mouse button!
 
application.CommandBars("ply").enabled=false

--
HTH

-------

Bob Phillips
"Andoni " wrote in message
...
I have a workbook, I have to protect the workbook from copy paste
cut.... this is already done and working.


My problem:

1) How is it possible to disable the right mouse menu appearing when
you are over the sheet tabs and you right click the mouse?

If i don't do yhis my previous work is useless!

And despite cut copy and paste are disable, the option copy & copy and
move is still enable from the sheet tabs right mouse buton!


Many thanks


---
Message posted from http://www.ExcelForum.com/




Soo Cheon Jheong[_2_]

Disable sheets tabs right mouse button!
 
Try

in your ThisWorkbook Code Module:

- - - - - - - - - - - - - - - - - - - - - - - - - -
Private Sub Workbook_Open()

Application.CommandBars("PLY").Enabled = False

End Sub

Private Sub Workbook_Activate()

Application.CommandBars("PLY").Enabled = False

End Sub

Private Sub Workbook_Deactivate()

Application.CommandBars("PLY").Enabled = True

End Sub
- - - - - - - - - - - - - - - - - - - - - - - - - -


--
Regards,
Soo Cheon Jheong
_ _
^вп^
--




All times are GMT +1. The time now is 09:57 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com