I have a multiline textbox that has wordwrap set to True
I am assigning each line of the textbox to a string

Lets say I typed this into the textbox without pressing enter and it just wordwrapped to the next line

Visual Programming is
fun

it would assign "Visual Programming is fun" to the first string

however, what i want it to do is assign "Visual Programming is" to the first string and "fun" to the second string.....now if i would have pressed enter after "is" then it would have done what I wanted it to do, but if i dont press enter and just let it word wrap it does not do what i want it to do...

any thoughts?