I dont even know what this means

If you need help with a project or need to know how to do something specific in VB.NET then please ask your questions in here.
Forum rules
Please LOCK your topics once you have found the solution to your question so we know you no longer require help with your query.
8 posts Page 1 of 1
Contributors
User avatar
muttley1968
Hardcore Programmer
Hardcore Programmer
Posts: 622
Joined: Thu Jun 17, 2010 11:54 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
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
User avatar
Shim
VIP - Donator
VIP - Donator
Posts: 882
Joined: Wed Dec 14, 2011 5:02 am

whatever happens dont break the terms of the forums , mind your language #muttley1968
Find my programs on Softpedia
User avatar
AnoPem
VIP - Donator
VIP - Donator
Posts: 441
Joined: Sat Jul 24, 2010 10:55 pm

Have you added refrence and stuff, is the dll files for AxWindowsMediaPlayer1 in the same directory ?
https://t.me/pump_upp
User avatar
muttley1968
Hardcore Programmer
Hardcore Programmer
Posts: 622
Joined: Thu Jun 17, 2010 11:54 pm

It should be and does using like shortend version like that still count and swearing ?.....
Filip
Coding Guru
Coding Guru
Posts: 833
Joined: Wed Jan 05, 2011 3:59 pm

mshimranpro wrote:
whatever happens dont break the terms of the forums , mind your language #muttley1968
Those are not terms, but rules cooll;
CodenStuff wrote:
Nope, it's just your sick and dirty mind. You sick twisted warped little pervo :D
User avatar
muttley1968
Hardcore Programmer
Hardcore Programmer
Posts: 622
Joined: Thu Jun 17, 2010 11:54 pm

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 ?.....
Filip
Coding Guru
Coding Guru
Posts: 833
Joined: Wed Jan 05, 2011 3:59 pm

This topic went completely off-topic.

Please keep on topic! Thanks cooll;
CodenStuff wrote:
Nope, it's just your sick and dirty mind. You sick twisted warped little pervo :D
User avatar
muttley1968
Hardcore Programmer
Hardcore Programmer
Posts: 622
Joined: Thu Jun 17, 2010 11:54 pm

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
8 posts Page 1 of 1
Return to “Coding Help & Support”