Page 1 of 1

I dont even know what this means

Posted: Mon Feb 25, 2013 5:00 pm
by muttley1968
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
Code: Select all
    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
works fine in the other player yet in mine i get this error
'IWMPPlaylist' is ambiguous in the namespace 'WMPLib'.

WTF does that even mean

Re: WTF I dont even know what this means

Posted: Mon Feb 25, 2013 5:12 pm
by Shim
whatever happens dont break the terms of the forums , mind your language #muttley1968

Re: WTF I dont even know what this means

Posted: Mon Feb 25, 2013 5:19 pm
by AnoPem
Have you added refrence and stuff, is the dll files for AxWindowsMediaPlayer1 in the same directory ?

Re: WTF I dont even know what this means

Posted: Mon Feb 25, 2013 6:05 pm
by muttley1968
It should be and does using like shortend version like that still count and swearing ?.....

Re: WTF I dont even know what this means

Posted: Mon Feb 25, 2013 6:29 pm
by Filip
mshimranpro wrote:
whatever happens dont break the terms of the forums , mind your language #muttley1968
Those are not terms, but rules cooll;

Re: WTF I dont even know what this means

Posted: Mon Feb 25, 2013 6:41 pm
by muttley1968
2) No offensive language what so ever, if you use offensive language your post will be deleted and you may receive a warning. All racist, sexist or homophobic abuse will result in the offender being permanently banned from the site!.

how is what i put breaking any of them rules it not racist sexist or homophobic its Anoyed right or am i wrong ?.....

Re: WTF I dont even know what this means

Posted: Mon Feb 25, 2013 7:59 pm
by Filip
This topic went completely off-topic.

Please keep on topic! Thanks cooll;

Re: I dont even know what this means

Posted: Mon Feb 25, 2013 9:00 pm
by muttley1968
okay thanks get it back on topic i found out what the error means its that i had to dlls with the same function and function name so they conflicted with one anouther so i removed one and its all good now