Okay, after messing around a bit i came up with this.
vb Code:
ListBox1.Items.Add(TextBox1.Lines(0))
That copies the first line of the textbox into the list box.
So now i need a way to get the number of lines in the textbox (since it can vary).
I know the code to do this..
vb Code:
Dim line As String
line = TextBox1.Lines.Count
TextBox2.Text = line
But, it returns the actual value. (It returns 7 since for my test i)
-------
Stopping there since i got an email for a reply to this thread.
Read it.. and i found i made this out to be a lot harder than it is haha.
Thanks for your help, works perfectly.