This here seems to work...

VB Code:
  1. Private Sub Drive1_Change()
  2. Dim x As Integer
  3. Dim fname As String
  4.  
  5. If Drive1.Drive = "c:" Then
  6.     File1.Path = "c:\Mp3's"
  7.  
  8. Else
  9. File1.Path = "d:\mp3s"
  10. End If
  11. For x = 0 To File1.ListCount - 1
  12.       Label1 = File1.Path & "\" & File1.List(x)
  13.        
  14.         Set i = ListView1.ListItems.Add(, , File1.List(x))
  15.     Next
  16. End Sub