Im making a custom Web Browser and the media player works just fone only one issue Ive found is I can use my mouse to select multi music files to add them to the list.

Code:
Public Class Form2

    Private Sub AddToPlaylistToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AddToPlaylistToolStripMenuItem.Click
        OpenFileDialog1.ShowDialog()
        AxWindowsMediaPlayer1.URL = OpenFileDialog1.FileName
    End Sub
End Class
I man its a ver basic addon for the browser right now. I just need to be able to add more then one music file to the media player at one time witht he mouse or at lest allow me to hold down ALT and select more then one file. Im sure i made just a simple mistake here.