- Home
·
- Sound/MP3
·
- After playing a song using MediaPlayer Controls from a list box, it goes on to the next song in a l
After playing a song using MediaPlayer Controls from a list box, it goes on to the next song in a l
After playing a song using MediaPlayer Controls from a list box, it goes on to the next song in a list and plays it. Great Code!!!!!
Rate After playing a song using MediaPlayer Controls from a list box, it goes on to the next song in a l
(2(2 Vote))
Dim totcount As Variant
totcount = List1.ListCount - 1
If totcount = List1.ListCount Then
Else
List1.ListIndex = List1.ListIndex + 1
MediaPlayer1.FileName = List1.Text
MediaPlayer1.Play
End If
End Sub
After playing a song using MediaPlayer Controls from a list box, it goes on to the next song in a l Comments
No comments yet — be the first to post one!
Post a Comment