HI,
How I have two text boxes that contain numbers. Is it possible to add the two text boxes together?
somthing like
var= text1.text + text2.text
but that doesn't work.
Thanks!
Printable View
HI,
How I have two text boxes that contain numbers. Is it possible to add the two text boxes together?
somthing like
var= text1.text + text2.text
but that doesn't work.
Thanks!
You must convert the text to values:
var = Val(Text1.Text) + Val(Text2.Text)
Good luck!
------------------
Joacim Andersson
[email protected]
[email protected]
www.YellowBlazer.com
Thanks for the quick reply, that worked great!