hi,
works almost as I need it....it places the "otherinfo" in the second column, BUT it places it in the next line...
this is the whole function I'm using...
Dim fle As String
Dim filename As String
Dim lvi As New ListViewItem()
For Each fle In Directory.GetFiles(strPathMedia)
lvMedia.Items.Add(Path.GetFileName(fle))
With lvi
.Text = filename
.SubItems.Add(Path.GetExtension(fle))
End With
lvMedia.Items.Add(lvi)
Next fle
Mike