Jobs
Author: Faisal Kafeel Date Submitted: 3/6/2007 Category: Music/Sounds Compatibility: .NET This code has been accessed 7266 times.
Email Yourself this snippet:
for this u need a window media player control which u can add from toolbox and a button
Code
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim b As New OpenFileDialog() b.ShowDialog() Dim c As String c = b.FileName wmp.URL = c End Sub