O.P.
Hey everyone.
I've just started learning about Visual Basic and i am trying to create a simple app that will add two numbers.
I 'vedesigned the UI and it simply has two textboxes for a user to put in their specified numbers and a third textbox to display the answer.
I have tried googling this for hours and i am stumped. Can someone please help me out?
acmilantim,
Put a button control on the form and double clickit to get the code page.
you could try :
textbox3.text = val(textbox1.text) + val(textbox2.text)
O.P.
OMG i did it! Yay! Lol thanks for the help! Is it the same for multiplication with obvious changes e.g. a * instead of a +?