I have a worksheet that I protect from cell deletions by disabling the command function for 'delete' using the following code:
CommandBars.FindControl(ID:=292).Enabled = False
I execute this code in two subs:
Private Sub Worksheet_Change(ByVal Target As Range)...