I'm trying to pull all the items from a listbox on form 1 and put them into a multiline textbox on form 2

This is the code I have but it doesn't work:

Dim i As Integer
i = 0
For i = Form1.ListEmail.ListCount - 1 To 0 Step -1
Form1.ListEmail.Text = Me.txtRecipients.Text
Next

Any ideas???