I have a multiline textbox with text that i want to add to a listbox. Each line in the textbox should be a new line in the listbox.

I had a problem when going from listbox to textbox but that was solved with
VB.NET Code:
  1. For Each item As String In EnDeCrypt.ListBox1.Items
  2.             EnDeCrypt.TextBox1.AppendText(item & Environment.NewLine)
  3.         Next

Is it adaptable to do what i'm trying to do now?
If not then how would i do it.

Thanks