Just tried some other events, and the keyUP event does work.. But also still does select a new button. This also works and also still selects a new button:
vb Code:
Protected Overrides Function ProcessDialogKey(ByVal keyData As System.Windows.Forms.Keys) As Boolean Select Case keyData Case Keys.Up : MsgBox("UP") Case Keys.Right : MsgBox("RIGHT") Case Keys.Down : MsgBox("DOWN") Case Keys.Left : MsgBox("LEFT") End Select Return (MyBase.ProcessDialogKey(keyData)) End Function
But I guess it can be quite frustrating when your controlling your rc car, when pressing a key the selection of your buttons changes constantly :P




. This also works and also still selects a new button:
Reply With Quote