Private Sub Form1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles Me.KeyPress
If e.KeyChar = Microsoft.VisualBasic.ChrW(Keys.V) Then
MsgBox("woot")
End If
End Sub
Private Sub Form1_KeyUp(...) Handles Me.KeyUp
If e.KeyCode = Keys.V Then MessageBox.Show("woot")
End Sub