AH, whoops, lol. This part:
..removes the new lines. Which in turn, makes it all 1 line.VB Code:
Text1.Text = Replace(desc(List1.ListIndex), vbNewLine, "")
You can remove the "Replace" and just make it this:
I had the "Replace" because I didn't set the MutliLine property to true, and it showed squares for the Newline characters..VB Code:
Text1.Text = desc(List1.ListIndex)
Phreak




Reply With Quote