Guest aco2000 Posted June 26, 2004 Report Share Posted June 26, 2004 Gostaria dee saber como usurar uma TextBox1 e TextBox2 atribuir variavel como Private Sub CommandButton1_Click()a = TextBox1b = TextBox2c = a + bTextBox3 = cEnd Subfazer a soma e não juntar os numerosaco2000@uol.com.br Quote Link to comment Share on other sites More sharing options...
0 Trakinas Posted June 26, 2004 Report Share Posted June 26, 2004 que tal esse codigoPrivate Sub Command1_Click() Dim x As Integer Dim y As Integer Dim z As Integer x = Str(Text1.Text) 'str transforma de texto para numero y = Str(Text2.Text) z = Str(x + y) Text3.Text = (z) End Sub ve se é isso que você quer é ve se da certo, me avise!!!qualquer duvida poste de novose você tiver outra duvidas dessas tem a seção de VBate mais Quote Link to comment Share on other sites More sharing options...
0 Guest Guest Posted June 28, 2004 Report Share Posted June 28, 2004 Obrigado pela a dica mas so funcionou como esta abaixoPrivate Sub Label1_Click()Dim x As IntegerDim y As IntegerDim z As Integerx = Val(TextBox1)y = Val(TextBox2)z = (x + y)TextBox3 = (z) Quote Link to comment Share on other sites More sharing options...
0 Trakinas Posted June 29, 2004 Report Share Posted June 29, 2004 aki en casa funfou normalo que acontece de errado ao compilar?/ Quote Link to comment Share on other sites More sharing options...
Question
Guest aco2000
Gostaria dee saber como usurar uma TextBox1 e TextBox2 atribuir variavel como
Private Sub CommandButton1_Click()
a = TextBox1
b = TextBox2
c = a + b
TextBox3 = c
End Sub
fazer a soma e não juntar os numeros
aco2000@uol.com.br
Link to comment
Share on other sites
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.