I cannot get this working, I want on form keypress, if they hit w, to move the location of label1's y location -10.

VB Code:
  1. Private Sub Form1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles Me.KeyPress
  2.         If e.KeyChar = "w" Then
  3.             Label1.Location.Y = Label1.Location.Y - 10
  4.         End If
  5.     End Sub

Thanks for any help!