Another way to do this is to include the Multimedia (MCI) control in your VB project. You can then place an MCI control on a form and use the following code in the forms load event.

Private Sub Form_Load()
MMControl1.Wait = True
MMControl1.FileName = "C:\your.mp3"
MMControl1.Command = "Open"
End Sub