Quote Originally Posted by RhinoBull
Here is modified version (untested) so give it the try and let em know if works for you:
VB Code:
  1. Private Sub Command1_Click()
  2. Dim i As Integer
  3.  
  4.     If File1.ListIndex < 0 Then
  5.         MsgBox "No Selected Songs.", vbCritical
  6.         Exit Sub
  7.     End If
  8.    
  9.     ReDim sFileName(0)
  10.     blnCopy = False
  11.    
  12.     For i = 0 To File1.ListCount - 1
  13.         If File1.Selected(i) = True Then
  14.             sFileName(UBound(sFileName)) = File1.List(i)
  15.             ReDim Preserve sFileName(UBound(sFileName) + 1)
  16.         End If
  17.     Next i
  18.     If UBound(sFileName) > 0 Then
  19.         If Trim(sFileName(UBound(sFileName))) = "" Then
  20.             ReDim Preserve sFileName(UBound(sFileName) - 1)
  21.         End If
  22.     End If
  23.     If Trim(sFileName(0)) <> "" Then
  24.         blnCopy = True 'not sure what this is for ???
  25.     End If
  26.  
  27. End Sub
Ok, I should have just asked this to, but I need the directory of the file list box infront of the names.