B
Bob V
This works on my Letter Key pad but not my Number Pad unless I Turn off Num
Lock
Can this be used with Number Key Pad ............Thanks Bob
To provide this functionality in Access, attach this Event Procedure to the
KeyPress event of your control.
Select Case KeyAscii
Case 43 ' Plus key
KeyAscii = 0
Screen.ActiveControl = Screen.ActiveControl + 1
Case 45 ' Minus key
KeyAscii = 0
Screen.ActiveControl = Screen.ActiveControl - 1
End Select
Lock
Can this be used with Number Key Pad ............Thanks Bob
To provide this functionality in Access, attach this Event Procedure to the
KeyPress event of your control.
Select Case KeyAscii
Case 43 ' Plus key
KeyAscii = 0
Screen.ActiveControl = Screen.ActiveControl + 1
Case 45 ' Minus key
KeyAscii = 0
Screen.ActiveControl = Screen.ActiveControl - 1
End Select