Ver Mensaje Individual
  #2 (permalink)  
Antiguo 13/03/2007, 20:04
EMILIO_2007
 
Fecha de Ingreso: febrero-2007
Mensajes: 12
Antigüedad: 17 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