I dont even know what this means
Posted: Mon Feb 25, 2013 5:00 pm
Hello im trying to build a media player i allready have one so i was stealing the code from that anyway
i used this code
'IWMPPlaylist' is ambiguous in the namespace 'WMPLib'.
WTF does that even mean
i used this code
Code: Select all
works fine in the other player yet in mine i get this error Private Sub BackTrackButton2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BackTrackButton2.Click
Dim TrackURL
Dim Playlist As WMPLib.IWMPPlaylist = AxWindowsMediaPlayer1.newPlaylist("MyPlayList", "")
For Each TrackURL In Plist.Items
Playlist.appendItem(AxWindowsMediaPlayer1.newMedia(TrackURL))
Next
AxWindowsMediaPlayer1.currentPlaylist = Playlist
End Sub
'IWMPPlaylist' is ambiguous in the namespace 'WMPLib'.
WTF does that even mean