[Source]Move form with Keys
[php]Dim p As New Point(Me.Location.X, Me.Location.Y + 1)
If GetAsyncKeyState(Keys.Down) Then
Me.Location = p
End If[/php]
Thats for the down key(Also moves form down)
Now figure the rest out yourself
also needs
[php]Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vkey As Long) As Integer[/php]
Good job, could be a bit more detailed explaining code for those newbs, but yeah.
I'm back /ME