Hi,
I am trying to figure out how to prevent pausing/interrupting the VBA code on my worksheets.
Adding a password to the VBA code still allows everyone to enter Break Mode and bypass all codes on the worksheets.
I have tried using:
Application.EnableCancelKey = xlDisabled
And have tried immediately shutting down the interrupt key by using:
If Application.EnableCancelKey = xlInterrupt Then
Application.EnableCancelKey = xlDisabled
End If
My knowledge of VBA is pretty basic so help would be very much appreciated!
Kr, Simon
Bookmarks