I have the following code yet it seems to be not responding to the key presses.
Am I missing something?

VB Code:
  1. Private Sub frmBDwgUp_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles Me.KeyDown
  2.         If e.KeyCode = Keys.Enter Then
  3.             GO()
  4.         End If
  5.     End Sub