This topic will show you how to detect keyboard events and respond to them in your program.
If you want a more detailed explanation about the difference between KeyDown and the KeyPress events see this post:
If e.KeyChar = "A" Then 'We check a character in double quotes instead of Keys.A
lblOutput.Text = "Capital A"
End If