I am trying to get a multiline dynamic text box working. When the text is read from the file, it is displayed in the text box as double spaced.

The text file looks like:
txt1=This is line 1
This is line 2
This is line 3.

It displays in the text box as:
This is line 1

This is line 2

This is line 3

----
It displays single spaced if I mash the separate lines into one in the text file and it wraps okay too. But, I wrote the text as separate lines in the file so I could control where the linebreaks occur. Even if I did not want to control the wrapping, a text file with one very long line of text is cumbersome to work with

Any ideas? Thanks.