No offense but, cafeenman's right. Try other means of storing your data other than the array.
Anyway, regarding with this part...
VB Code:
'------------------------------------------------------------------------------ tmpGenre = (GetID3.Genre) ' <--- Relevant Code i.SubItems(5) = Matrix(tmpGenre) '------------------------------------------------------------------------------
have you checked on tmpGenre's output? Truth is, I also don't find any problems with the results.
Know first the value of tmpGenre and compare it with your Matrix if the tmpGenre's value corresponds with that of Matrix's
VB Code:
'------------------------------------------------------------------------------ tmpGenre = (GetID3.Genre) ' <--- Relevant Code i.SubItems(5) = Matrix(tmpGenre) Debug.Print "tmpGenre=" & tmpGenre & _ ": Matrix=" & Matrix(tmpGenre) '------------------------------------------------------------------------------
![]()




Reply With Quote