Search results

  1. A

    Disable ctrl + dot(.) in access for report

    Hi How is it possible to Disable ctrl + dot(.) in access for report? Report has not event(key down) Maybe it's be possible in Autokeys macro . but I don't know how is it? What thing I shoul write in macro name? ^. - ^{.} - ^{'.'} and … are wrong Thanks very much
  2. A

    Disable ctrl + dot(.) in access

    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...
Back
Top Bottom