CTRL+Break Problem at VBA

MehmetYıldız

New Member
Joined
Dec 19, 2012
Messages
20
Hello Everyone,

I write below macro because i want to prevent ctrl+break at vba.

but when i pressed twice or more the code still stops. i need your help :(

Private Sub Workbook_Open()
On Error GoTo MyErrorHandler:
t = Timer
Application.EnableCancelKey = xlErrorHandler


Do While Timer - t < 5


Loop
'cntr is random name that i give
[cntr] = 0
try:
pass:
If [cntr] >= 3 Then
MsgBox ("You Have Entered The Password Incorrect for Three Times. So Now This File Will Be Closed.")
ThisWorkbook.Close savechanges:=False
End If
pw = InputBox("Please Enter the Password to Open the File")
If pw = "" Then
MsgBox ("Password is Mandatory. Please Enter the Password")
GoTo try
End If
If pw <> "" Then
[cntr] = [cntr] + 1
GoTo pass
End If
Application.EnableCancelKey = xlInterrupt


Do While Timer - t < 100
Loop


MyErrorHandler:
If Err.Number = 18 Then
MsgBox "Stop Hitting Ctrl + Break Keys. It Will Not Work"
Resume
Else

End If




End Sub
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
Try using
Code:
Application.EnableCancelKey = xlDisabled
 
Upvote 0

Forum statistics

Threads
1,223,911
Messages
6,175,325
Members
452,635
Latest member
laura12345

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top