Sie sind auf Seite 1von 1

Private Sub txtjoint_KeyPress(ByVal sender As System.

Object, ByVal e As
System.Windows.Forms.KeyPressEventArgs) Handles txtjoint.KeyPress
If Char.IsDigit(e.KeyChar) Then
e.Handled = False
Else
e.Handled = True
End If
End Sub

Das könnte Ihnen auch gefallen