Milton
não registrado
|
|
ENUNCIADA !
|
|
|
Postada em 25/09/2004 00:15 hs
nao toh conseguindo soma: text1= 1 , text2=2 multi dah certo Text3 = Text1 * Text2 (resulrado= 2) soma dah errado Text3 = Text1 = Text2 (resulrado= 12).Qual é o jeito correto para soma??? Text3 = Cdbl(Text1) + Cdbl(Text2), tb dah errado
|
|
|
|
andrekbc
|
SÃO PAULO SP - BRASIL
|
|
ENUNCIADA !
|
|
|
Postada em 25/09/2004 01:46 hs
text3=cdbl(text1.text+text2.text) 'ou text3=cdbl(cdbl(text1.text)+cdbl(text2.text) )'=3
Só os melhores sobrevivem, esta é a lei da natureza!!!
|
|
|
Vila
não registrado
|
|
ENUNCIADA !
|
|
|
Postada em 25/09/2004 09:44 hs
Use val para converter string para número. Assim Text3.text = val(text1.text)+val(Text2.text) Vila
|
|
|