Why won't this code work? It doesn't change to the correct directory, clear the listview, & repopulate the listview on the change event. Here's my code:
VB Code:
  1. Private Sub Combo1_Change()
  2. File1.Path = "C:\mp3s\" & Combo1.Text
  3.  ListView1.ListItems.Clear
  4.  For X = 0 To File1.ListCount - 1
  5.        
  6.         Set i = ListView1.ListItems.Add(, , File1.List(X))
  7.         i.SubItems(1) = File1.Path
  8.     DoEvents
  9.    
  10.     Next
  11. End Sub