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...