Well seeing as you're having the name, you might want to do a save setting when you add it to the listbox.
i.e
[php]
Dim OFD As New OpenFileDialog
If OFD.ShowDialog = Windows.Forms.DialogResult.OK then
Dim lio1 As Integer = (OFD.FileName.LastIndexOf("\") + 1)
Dim lio2 As Integer = (OFD.FileName.LastIndexOf(".")
Dim finalName As String = OFD.FileName.Substring(lio1, (lio2 - lio1))
ListBox1.Items.Add(finalName)
SaveSetting("MyMedia", "Songs", finalName, OFD.FileName)
End If
[/php]
Then add this to your ListBox1_SelectedIndexChanged
[php]
AxWindowsMediaPlayer1.URL = GetSetting("MyMedia", "Songs", ListBox1.SelectedItem)
AxWindowsMediaPlayer1.Ctlontrols.Play()
[/php]
Yeah...