Ver Mensaje Individual
  #3 (permalink)  
Antiguo 03/09/2007, 09:46
_cronos_
 
Fecha de Ingreso: marzo-2007
Mensajes: 50
Antigüedad: 17 años, 2 meses
Puntos: 0
Re: Sumar Valores En Una Caja De Texto

tambien puede ser


Código:
Dim a As Integer
Dim b As Integer

Private Sub Command1_Click()
a = Text1.Text
b = Text2.Text

Text3 = ((a) + (b))

End Sub