G Guest May 13, 2004 #1 I'd like to disable the F1 key because I frequently hit it inadvertently when trying to hit F2. Any ideas?
I'd like to disable the F1 key because I frequently hit it inadvertently when trying to hit F2. Any ideas?
L Lady Layla May 13, 2004 #2 pop it off with a screwdriver : I'd like to disable the F1 key because I frequently hit it inadvertently when trying to hit F2. Any ideas?
pop it off with a screwdriver : I'd like to disable the F1 key because I frequently hit it inadvertently when trying to hit F2. Any ideas?
D Dave Peterson May 14, 2004 #3 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 If you pop the F1 key off, you may want to remove the spring and put the keytop back. It'll look prettier!
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 If you pop the F1 key off, you may want to remove the spring and put the keytop back. It'll look prettier!