Hi,
I have a textbox, when pressing 'DOWN' on the keypad, it jumps to the next control with the next tab stop - EVEN when tab stop property is disabled. I don't want this behavior. How can I turn this off?
Thank you
Hi,
I have a textbox, when pressing 'DOWN' on the keypad, it jumps to the next control with the next tab stop - EVEN when tab stop property is disabled. I don't want this behavior. How can I turn this off?
Thank you
I set TabStop to no for all controls and down arrow just moves to next record.
Any control with TabStop set to Yes will get focus.
How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.
have you got the form cycle property set to All Records?
As per Colin's suggestion:
Code:Private Sub Form_Load() Me.KeyPreview = True End Sub Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer) If KeyCode = vbKeyDown Then KeyCode = 0 End Sub
Linq ;0)>