I'm trying to make the arrow keys usable in a game I am writing in VB.NET
Here's a snippet of my code:

Private Sub Form1_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles MyBase.KeyDown

If e.KeyCode = Keys.Right Then
yy = yy - 1
drawit()


....

I can't get this to work, when I push the 'right' arrow key, the focus cycles between the form objects, moving from button to button, instead of executing this command here. How do I do this?