VB Code:
  1. Private Sub Command1_Click()
  2.     Dim i As Integer
  3.     Text1.Text = ""
  4.     For i = 0 To List1.ListCount - 1
  5.         Text1.Text = Text1.Text & List1.List(i) & vbCrLf
  6.     Next i
  7. End Sub