Que un textbox acepte números y el símbolo del punto
Hola david, para que un textbox solo acepte números la rutina que tengo es la siguiente:
Private Sub txturnos_KeyPress(ByVal KeyAscii As MSForms.ReturnInteger)
If KeyAscii = 13 Then
KeyAscii = 0
SendKeys "{tab}"
ElseIf KeyAscii 8 Then
If Not IsNumeric(chr(KeyAscii)) Then
Beep
KeyAscii = 0
End If
End If
End Sub
Pero lo que necesito es que también acepte el punto, en el código ascii es el numero 46, pero como lo implemento en mi rutina, de antemano muchas gracias.
Private Sub txturnos_KeyPress(ByVal KeyAscii As MSForms.ReturnInteger)
If KeyAscii = 13 Then
KeyAscii = 0
SendKeys "{tab}"
ElseIf KeyAscii 8 Then
If Not IsNumeric(chr(KeyAscii)) Then
Beep
KeyAscii = 0
End If
End If
End Sub
Pero lo que necesito es que también acepte el punto, en el código ascii es el numero 46, pero como lo implemento en mi rutina, de antemano muchas gracias.
Respuesta de denciso
1