aide avec WindowsMediaPlayer
bonjour, j'ai créer un simple lecteur mp3 mais voila j'ai un petit problème quand je change de musique, il m'affiche une erreur:
voici en image mon projet:
http://imageshack.us/a/img841/9927/simplemp3.jpg
voici mes codes:
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| Public Class Form1
Dim files As String, path As String()
Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
If (OpenFileDialog1.ShowDialog = Windows.Forms.DialogResult.OK) Then
files = OpenFileDialog1.SafeFileName
path = OpenFileDialog1.FileNames
ListBox1.Items.Add(files)
End If
End Sub
Private Sub ListBox1_Click(sender As System.Object, e As System.EventArgs) Handles ListBox1.Click
AxWindowsMediaPlayer1.URL = path(ListBox1.SelectedIndex)
End Sub
End Class |
voici l'erreur quand je change de musique:
Code:
AxWindowsMediaPlayer1.URL = path(ListBox1.SelectedIndex)
Merci,cordialement