Private Sub Text1_KeyPress(KeyAscii As Integer)
Dim strNumeros As String
strNumeros = "1234567890.," & Chr(8)
If Len(Text1.Text) = 0 And Chr(KeyAscii) = 0 Then
KeyAscii = 0
Else
If InStr(1, strNumeros, Chr(KeyAscii), vbBinaryCompare) = 0 Then
KeyAscii = 0
End If
End If
End Sub