The problem is, that you create multiple instances of the control and let them all play one song. You should just create one instance add all songs to the “CurrentPlaylist” and then let the control play it:
WindowsMediaPlayer player = new WindowsMediaPlayer;
for (int i = 1; i < 30; i++)
{
IWMPMedia media = player.newMedia( @"C://Songs//m" + i + ".mp3");
player.currentPlaylist.appendItem(media);
}
player.controls.play();
1
solved All songs are starting simultaneously instead of one after another