G
giannis
I want to write a code so the fields of my form go to the next record
when i press the PgDn key.
What must i write ?
Private Sub Form1_KeyDown(ByVal sender As Object, ByVal e As KeyEventArgs)
Handles Me.KeyDown
If e.KeyCode = Keys.PageDown Then
----------------> ?
End If
End Sub
when i press the PgDn key.
What must i write ?
Private Sub Form1_KeyDown(ByVal sender As Object, ByVal e As KeyEventArgs)
Handles Me.KeyDown
If e.KeyCode = Keys.PageDown Then
----------------> ?
End If
End Sub