S
Sven
I only know the keydown-event in VB 6, there it is like this:
Private Sub Form_KeyUp(KeyCode As Integer, Shift As Integer)
If KeyCode = 13 Then
XXXXXXXXXXX
End If
How can I do this in VB.Net? can I do this overriding other settings?
Thanks a lot!
Private Sub Form_KeyUp(KeyCode As Integer, Shift As Integer)
If KeyCode = 13 Then
XXXXXXXXXXX
End If
How can I do this in VB.Net? can I do this overriding other settings?
Thanks a lot!