[Resolved]-help with text boxes and numbers
Hey, this is a very noobish question! :blush:
i got sum text boxes and the user puts sum numbers into the text boxes
when they press the command button it adds the numbers the user put in and displays them, but say i put "1" in text1 and "1" in text2 and pressed the command, i get 11, what declirations are needed?
VB Code:
text3.text = text1.text + text2.text
please help
Re: [simple]-help with text boxes and numbers
use
text3 = cint(text1.text) + cint(text2.text)
Re: [simple]-help with text boxes and numbers
thanx! and sorry for being such a noob!