Validacion de Textbox
Publicado por Juan (1 intervención) el 01/05/2006 19:25:22
If (KeyAscii >= 48 And KeyAscii <= 57) Then
Else
If (KeyAscii = 45 Or KeyAscii = 46 Or KeyAscii = 8) Then
Else
KeyAscii = 0
End If
End If
Else
If (KeyAscii = 45 Or KeyAscii = 46 Or KeyAscii = 8) Then
Else
KeyAscii = 0
End If
End If
Valora esta pregunta


0