I am trying to do an keypress event that only allows numbers, backspace, and enter. I have the part that only allows numbers
I need to know how to know what keychar the backspace and enter are. Can someone give me a reference?Code:If Not (IsNumeric(e.KeyChar)) Then
e.Handled = True
End If
