OnKey and macro settings

tiredofit

Well-known Member
Joined
Apr 11, 2013
Messages
1,924
Office Version
  1. 365
  2. 2019
Platform
  1. Windows
The following code was tested in Excel 2013, with the macro settings at option 4, ie Enable all macros (not recommended; potentially dangerous code can run).

Code:
Option Explicit

Private Sub Workbook_Open()
        
    Application.OnKey Key:="^n", Procedure:=vbNullString
            
End Sub


These are the steps I took. Please try to follow it step by step to see if you get the same problem.

Firstly ensure the macro settings in Excel is set to:

Code:
    Enable all macros (not recommended; potentially dangerous code can run).

I uploaded the workbook on the internet (say a Hotmail e-mail), then downloaded it onto my C drive.

Then I tried to open the file saved on my C drive via Windows Explorer.

When Excel opens, a message at the top shows:

Code:
PROTECTED VIEW Be careful - files from the internet can contain viruses. Unless you need to edit, it's safer to stay in Protected View.

To the right of this message is a button - Enable Editing

Once I clicked on the button, I get a VBA error:

Code:
Run-time error '1004':

Method 'OnKey' of object '_Application' failed

When I click on Debug, this is the line it hangs on:

Code:
    Application.OnKey Key:="^n", Procedure:=vbNullString

If I now close the workbook WITHOUT saving, then open it via Windows Explorer, it runs without any problems.

Subsequent times also work.

Why is Excel 2013 exhibiting this weird behaviour?

Thanks
 
Last edited:

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
It's an issue with protected mode. There are many application methods you get this error with and I have yet to find any way around the problem besides closing and reopening the file.
 
Upvote 0
It's an issue with protected mode. There are many application methods you get this error with and I have yet to find any way around the problem besides closing and reopening the file.

Rory,

Been playing around with this and thought maybe brievely delaying the execution of the code would work.
I used OnTime but oviously the OnTime Method itself generates an error just like OnKey does.

However, using a Windows Timer surprinsingly worked for me .. So in case you are interested , this is what I did :

Workbook Module :

Code:
Private Sub Workbook_Open()
    Call CallTimerProc
End Sub

Standard Module :

Code:
#If VBA7 Then
    Declare PtrSafe Function SetTimer Lib "user32" (ByVal hWnd As LongPtr, ByVal nIDEvent As LongPtr, ByVal uElapse As Long, ByVal lpTimerFunc As LongPtr) As LongPtr
    Declare PtrSafe Function KillTimer Lib "user32" (ByVal hWnd As LongPtr, ByVal nIDEvent As LongPtr) As Long
    Dim hTimer As LongPtr
[URL=https://www.mrexcel.com/forum/usertag.php?do=list&action=hash&hash=Else]#Else[/URL] 
    Declare PtrSafe Function SetTimer Lib "user32" (ByVal hWnd As Long, ByVal nIDEvent As Long, ByVal uElapse As Long, ByVal lpTimerFunc As Long) As Long
    Declare PtrSafe Function KillTimer Lib "user32" (ByVal hWnd As Long, ByVal nIDEvent As Long) As Long
    Dim hTimer As Long
[URL=https://www.mrexcel.com/forum/usertag.php?do=list&action=hash&hash=End]#End[/URL]  If

Sub CallTimerProc()
    hTimer = SetTimer(0, 0, 0, AddressOf TimerProc)
End Sub

Sub TimerProc()

    KillTimer 0, hTimer

    Application.OnKey "^n", vbNullString
    
    MsgBox "Sucess!!"

End Sub

Subsequent calls to other Methods and Properties seem to work fine too all without having to close and reopen the file.
 
Upvote 0

Forum statistics

Threads
1,223,897
Messages
6,175,270
Members
452,628
Latest member
dd2

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