Alıntı:
Kullanışlı bir program.Forma bir buton ekleyin ve birde media player open filedialog eklemeyide unutmayın.
Public Class Form1


Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
OpenFileDialog1.Multiselect = True
OpenFileDialog1.ShowDialog()
OpenFileDialog1.Filter = "mp3 dosyaları (*.mp3)|*.mp3"
AxWindowsMediaPlayer1.URL = OpenFileDialog1.FileName

End Sub


Saygılar..

__________________