Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Special Keys

Status
Not open for further replies.

camidon

Programmer
May 9, 2000
268
US
Does anyone know if there is a way to disable special keys from code? I need to be able to disable it only for certain users so I kinda need to be able to do it from code. I will also be disabling the traditional menu bars and everything as well.

Thanks in advance!

Chris
 
I'd use the AutoKeys macro. Each action in the macro should run a function (RunCode) where you can control everything, including user names, start conditional branches and so on.

Good luck,

[pipe]
Daniel Vlas
Systems Consultant
 
I'm not really familiar with macros at all. Isn't there a function that will allow me to set Special Keys to true or false?
 
Try this,

CurrentDb.Properties("AllowSpecialKeys") = False


-------------------------------------
scking@arinc.com
Try to resolve problems independently
Then seek help among peers or experts
But TEST recommended solutions
-------------------------------------
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top