Try changing your for loop from a reverse count to a normal count:
Private Sub Form_Load()
File1.Path = "C:\Images"
File1.Refresh
If File1.ListCount > 0 Then
For i = 0 To File1.ListCount - 1
Combo1.AddItem File1.List(i)
Next
End If
End Sub