PC Review
Forums
Newsgroups
Microsoft Excel
Microsoft Excel Discussion
Disable hotkeys
Forums
Newsgroups
Microsoft Excel
Microsoft Excel Discussion
Disable hotkeys
![]() |
Disable hotkeys |
|
|
Thread Tools | Rate Thread |
|
|
#1 |
|
Guest
Posts: n/a
|
Hello haw I disable the hotkeys in Excel 2002 or customize it.
Thanks a lot. |
|
|
|
#2 |
|
Guest
Posts: n/a
|
You could use a small macro.
For example, this disables the F1 (help) key: Option Explicit Sub disableF1() Application.OnKey "{f1}", "" End Sub And this would toggle it back to normal. Sub enableF1() Application.OnKey "{f1}" End Sub If you look at sendkeys in VBA's help, you'll see how to override special keys. (Like ctrl-c for copy.) Sheriff wrote: > > Hello haw I disable the hotkeys in Excel 2002 or customize it. > > Thanks a lot. -- Dave Peterson |
|
|
|
#3 |
|
Guest
Posts: n/a
|
Thanks a lot.
"Dave Peterson" wrote: > You could use a small macro. > > For example, this disables the F1 (help) key: > > Option Explicit > Sub disableF1() > Application.OnKey "{f1}", "" > End Sub > > And this would toggle it back to normal. > > Sub enableF1() > Application.OnKey "{f1}" > End Sub > > If you look at sendkeys in VBA's help, you'll see how to override special keys. > (Like ctrl-c for copy.) > > > > > Sheriff wrote: > > > > Hello haw I disable the hotkeys in Excel 2002 or customize it. > > > > Thanks a lot. > > -- > > Dave Peterson > |
|
![]() |
|
| Thread Tools | |
| Rate This Thread | |
|
|

Main Page 

