Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Disable copy, cut, and paste button in the quick acces toolbar

Status
Not open for further replies.

wmbb

Technical User
Jul 17, 2005
320
NL
Is it possible to disable the copy, cut, and paste button in the quick access toolbar ?
I don't want the users to copy, cut or paste in a planning worksheet to protect the formatting of the planning sheet.
I already disabled the clipboard group in the ribbon using CustomUIeditor and disabled the keyboard shortcuts and right click menu using vba.
But when a user added the copy, cut or paste button to the quick access toolbar they are still able to copy, cut and paste like before.

Now I want to disable these buttons if present in the quick access toolbar.

Who can point me in the right direction.....
 
Hi,

In the SHEET OBJECT code sheet, in the WorkSheet_SelectionChange Event code stub...
Code:
   Application.CutCopyMode = False

Skip,
[sub]
[glasses]Just traded in my old subtlety...
for a NUANCE![tongue][/sub]
 
Thank you for this option.
This works but I solved the problem already using the CustomerUIeditor.
Now they only see the option I want the users to use.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top