Guys,
I am trying to concatenate the output of various functions into a textbox, but it all comes up in one biiig line. How can I insert break lines in between the variables? I have something like this:
Me.TextBox.text = output1 + output2
And I would like to have something like this:
Me.TextBox.text = output1 + ENTER + output2
Any ideas?
Thanks!