Hi all,
Like it says in the topic, i want to cancel a keydown event when i am editing a textbox, but not when a textbox has the focus.
For example:
Private Sub TextBox2_KeyDown(KeyCode As Integer, Shift As Integer)
if keycode = 39 then
Textbox1.setfocus
end if
End Sub
In...