Disabling F1 key

N

Nick Marischuk

Almost every other time that I want to activate the F2 key
(edit cell), I accidently sstrike the F1 key(help). After
about 10 seconds, the help screen opens and I then close
it. How can I disable or deactivate the F1 key to rid
myself of this pain in the ____? Thanks for the help
anyone.
 
D

Dave Peterson

Maybe you could a line or two to your personal.xls (auto_open/workbook_open
procedure):

Option Explicit
Sub disableF1()
Application.OnKey "{f1}", ""
End Sub
Sub enableF1()
Application.OnKey "{f1}"
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Deactivating the F1 key 1
Disable F1 key? 2
Windows 10 Activate windows now message 3
change a function key 4
Turn Off Help 3
Can I disable F1 Key? 6
Changing the shortcut key for Help (F1)? 4
Windows Boot Up process 6

Top