Just combin the variable's with a & like if u wanted to add box1 with box3
then do
textbox.text = box1 & box3
So if box1 = Hello and box3 = World
the textbox.text would get
HellWorld
And if u would like to have a space inbetween that then do
textbox.text = box1 & " " & box3




Reply With Quote