Why is this not picking a random song for me? It worked like once, then kept playing the same song..
VB Code:
If mpMain.PlayState = mpStopped Then UpperBound = Upper + 1 LowerBound = 0 Upper = UBound(arrSongs) Randomize SongNum = Int((UpperBound - LowerBound + 1) * Rnd + LowerBound) NAAAS.mpMain.Filename = arrSongs(SongNum) Text2.Text = arrSongs(SongNum) End If
