I am trying to combine the output of various functions into a text box, but it all happens on the same biiig line. How to insert break lines between 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!
source
share