someThin.text = String(value1) and multiple values

someThin.text = String(value1)

Okay, I’m using the above code to pass an integer to a dynamic textBox.
The problem is I’d like to post a second variable (value2) in the same textBox as well as a ‘/’ between them. I could use multiple textboxes but that just seems sooooo inefficient.

I’ve tried the following permutations and none have worked.

someThin.text = String(value1 ’ ’ value2) ;
someThin.text = String(value1) ‘/’ (value2);
someThin.text = String(value1) ‘/’ String(value2);