Give more information here.
How many columns you want in listview? and which data you want it to written in listview?
This is how you accessing listview and write data in it. Modifying it as you need.
Assume you have 4 columns :
With ListView1.ListItems
.Add , , Text1.Text
.Item(.Count).SubItems(1) = Text2.Text
.Item(.Count).SubItems(2) = Text3.Text
.Item(.Count).SubItems(3) = Text4.Text
End With
Just using loop through array and write it with sample code above