Disable ALT KEY

  • Thread starter Thread starter Dunce in SC
  • Start date Start date
D

Dunce in SC

Is it possible to disable the Ctrl or Alt key using vba code to protect
against someone inadvertantly adding a sheet to a workbook,

Thanks
 
Have you considered protecting the workbook? You can do it manually using
Tools-->Protection-->Protect Workbook and assigning a password, or use the
following code:

ActiveWorkbook.Protect Password:="PasswordHere", Structure:=True,
Windows:=False
 
Hi Robert:

I have tried but I have many macros accessing a couple of very hidden
sheets (brings up errors with protected workbook) and I am just
concerned that a user may inadvertantly hit the wrong key combinations
and mess up the program. The Menu is custom and I think disabling those
keys will best solve my problems if it is possible.

Thanks
 
Back
Top