supernerdpp
04-24-2007, 02:38 PM
Hey, I have a database and a login panel and I need to stop some users from using ctrl + c in query's or through out the database. The way I have set the db up is if a user logs in correct then they get directed to the appropriate switchboard. I have already disable all toolbars therefore disabling right click and on my forms I have vba to stop ctrl + c but can't figure out how to do it on queries, I have tried search and searching Google but if I have missed a post please include a link, any help would be appreciated THANKS :)
freakazeud
04-24-2007, 02:43 PM
Hi,
users should NOT see the query or table level directly anyway. So you would be better of using forms or reports to display that data. Though if you want a more global approach then check the Access help for AutoKeys macro. You can overwrite specific keys and key combination globally within the application. BTW...if you want to disable Ctrl+C then you might want to look at Ctrl+x as well.
HTH
Good luck
supernerdpp
04-24-2007, 03:18 PM
Thank you I just used auto keys
freakazeud
04-24-2007, 04:43 PM
You're welcome.
Good luck on future projects!