Private Sub txterr_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles TXTERR.KeyPress
If Char.IsDigit(e.KeyChar) Then
e.Handled = False
ElseIf Char.IsControl(e.KeyChar) Then
e.Handled = False
Else
e.Handled = True
End If
End Sub
este es el codigo q estoy manejando para validar pero no me permite poner numeros flotante ya que no permite escribir el punto (0.01) solo puedo escribir (12,324,1 etc..)
alguien me podria decir q mas ponerle para q me acepte el punto?? gracias
