You'll need to learn what threads are and how to use them. Threads allow you to do multiple things at ones.
Hyperz Reviewed by Hyperz on . Play selected listbox item private void axWindowsMediaPlayer1_Enter(object sender, EventArgs e) { String playname = listBox1.SelectedItem.ToString(); richTextBox3.Text = playname; axWindowsMediaPlayer1.URL = playname; axWindowsMediaPlayer1.Ctlcontrols.play(); axWindowsMediaPlayer1.Ctlcontrols.pause(); axWindowsMediaPlayer1.Ctlcontrols.stop(); axWindowsMediaPlayer1.Ctlcontrols.next(); Rating: 5