I want to disable the RIGHT arrow buttonCode:Select Case KeyCode
Case vbKeyRight:
keyascii = 0
End Select
Printable View
I want to disable the RIGHT arrow buttonCode:Select Case KeyCode
Case vbKeyRight:
keyascii = 0
End Select
Drop the ":" from it, it should then work. Only Java and C need that.
Are you sure you don't want this?...
(Swapped 'keyascii' for 'KeyCode')Code:Select Case KeyCode
Case vbKeyRight:
KeyCode = 0
End Select
thanks guys