Microsoft Access 掲示板

数字とマイナスだけを入力させたい / 7

9 コメント
views
4 フォロー
7
hiroton 2023/11/07 (火) 16:43:35 d8771@f966d

キー入力に関するイベントで全部リセットしてしまえばいいんじゃないですかね

Private Sub コンボ_KeyDown(KeyCode As Integer, Shift As Integer)
  KeyCode = 0
End Sub

Private Sub コンボ_KeyPress(KeyAscii As Integer)
  KeyAscii = 0
End Sub

Private Sub コンボ_KeyUp(KeyCode As Integer, Shift As Integer)
  KeyCode = 0
End Sub
通報 ...