Disable ctrl + dot(.) in access

armm1388

New member
Local time
Yesterday, 23:44
Joined
May 30, 2011
Messages
2
HiHow is it possible to Disable ctrl + dot(.) in access?The below code accepts code of all keys but don’t work for dot(.) :Private Sub Combo3_KeyDown(KeyCode As Integer, Shift As Integer)If Shift = 2 Then Select Case KeyCode Case Asc(".") KeyCode = 0 End SelectEnd SubThanks very much
 
armm1388,

If you don't mind not being able to use F11 and Alt+F11 to get to the Navigation Pane and VB Editor, you can always uncheck Use Access Special Keys option within the Current Database Access Options. This will disable Ctrl + dot from executing, however it will also disable all the other Access shortcut keys too.

Personally, I do this on my databases I send out to users (because there are some who would snoop around the back end if they could). Just thought I would give you this and see if it helps.

gopherking
 

Users who are viewing this thread

Back
Top Bottom