Is there a way to de-activate all hot keys in Access

  • Thread starter JimBurke via AccessMonster.com
  • Start date
J

JimBurke via AccessMonster.com

Is there a way to de-activate all hot keys in Access via VBA code, i.e. PF
keys and Ctrl key combinations, so that only the Access controls you have in
your app or toolbars or menu bar selections will do anything?
 
K

kc-mass

Someone already answered this same question. See below

Tools, StartUp, disable Use Special Access Keys. You can also disable any
specific Key(s) combination by creating an AutoKeys Macro, assigning the
Key(s) to the Macro Name column and leaving the Action column blank, e.g.

'To disable the SHIFT+F12 key combination
Macro Name____Action
+{F12}_________<leave blank>

NOTE: For specific Key Codes, see the SendKeys Statement.


Regards

Kevin
 
J

JimBurke via AccessMonster.com

Thanks. I did search for an answer before I asked, guess I didn't use the
right keywords. Should have known to look in Tools.
 
K

kc-mass

Hi Jim,

Once you see it, you know there's a way and maybe remember part of it.
Before that ??

If we all knew what we should know, what would have to discuss??

Regards

Kevin
 

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

Top