
13/03/2007, 20:04
|
| | Fecha de Ingreso: febrero-2007
Mensajes: 12
Antigüedad: 18 años, 2 meses Puntos: 0 | |
Re: Ayuda con texbox solo numeros Private Sub Command1_Click()
T1.Text = Format(T1.Text, "###,####,###.00")
If Not IsNumeric(T1.Text) Then
MsgBox "SOLO SE PERMITE NUMEROS", vbCritical
Else
MsgBox T1.Text
End If
End Sub |