I thought this was going to be easy as
Apparently its not working when adding this code its disables on all sheets in the workbook. I would like to be able to just disable Backspace and delete on specific sheet and not all sheets.
Code:
[COLOR=#3366CC]Private Sub Workbook_Activate()[/COLOR] Application.OnKey "{BACKSPACE}"
Application.OnKey "{DELETE}"
End Sub
Private Sub Workbook_Deactivate()
Application.OnKey "{BACKSPACE}"
Application.OnKey "{DELETE}"[COLOR=#3366CC]End Sub[/COLOR]
Apparently its not working when adding this code its disables on all sheets in the workbook. I would like to be able to just disable Backspace and delete on specific sheet and not all sheets.