Suppose you populate two cells:
Range("A1").text = "This is the first line"
Range("A2").text = "This is the second line"
Then you have a textbox and you set the multiline property to true. How can you fill the textbox so that you see both cells in two separate lines like:
This is the first line
This is the second line
