
05/05/2005, 13:40
|
 | | | Fecha de Ingreso: abril-2005 Ubicación: R.M. Talagante, Chile!!
Mensajes: 295
Antigüedad: 20 años Puntos: 2 | |
Holo si estas trabajando en VB.Net lo puedes hacer de esta forma:
Private Sub textbox1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles textbo.KeyPress
'Lo anterior es el evento keypress de tu caja de texto, es decir solo pon desde el primer if hasta el endif
If e.KeyChar.IsDigit(e.KeyChar) Then
e.Handled = False
ElseIf e.KeyChar.IsControl(e.KeyChar) Then
e.Handled = False
Else
e.Handled = True
End If
End Sub
Y listo ya con eso validas el ingreso SOLO numerico.
Chaito y espero que te sirva |