Results 1 to 2 of 2

Thread: [Resolved] Windows Media Player 9 ctl Add playlistitem

  1. #1

    Thread Starter
    Hyperactive Member Jason Badon's Avatar
    Join Date
    Feb 2001
    Location
    Colorado
    Posts
    329

    [Resolved] Windows Media Player 9 ctl Add playlistitem

    Does any one know how to select a playlist and add an item to a playlist using the window media player 9 control.

    Thanks for your time and help.

    Jason
    Last edited by Jason Badon; Dec 31st, 2002 at 12:04 PM.

  2. #2

    Thread Starter
    Hyperactive Member Jason Badon's Avatar
    Join Date
    Feb 2001
    Location
    Colorado
    Posts
    329

    [Resolved] Windows Media Player 9 ctl Add playlistitem

    Figured it out heres the results

    VB Code:
    1. Dim sPlaylist   As IWMPPlaylist
    2. Dim sMedia      As IWMPMedia
    3. Private Sub Form_Load()
    4.     Set sPlaylist = WinMP.playlistCollection.newPlaylist("Audio")
    5.     WinMP.currentPlaylist = sPlaylist 'selects playlist
    6.     Set sMedia = WinMP.mediaCollection.Add("Y:\MP3\311\311 - 311 - Down.mp3") 'Sets Media to Add to Playlit
    7.     List1.AddItem "Y:\MP3\311\311 - 311 - Down.mp3"
    8.     WinMP.currentPlaylist.insertItem (WinMP.currentPlaylist.Count), sMedia ' Adds Playlist Item
    9.     Set sMedia = WinMP.mediaCollection.Add("Y:\MP3\Aerosmith\Aerosmith - A Little South Of Sanity - Livin' On The Edge.mp3") 'Add Playlist Item'Sets Media to Add to Playlit
    10.     List1.AddItem "Y:\MP3\Aerosmith\Aerosmith - A Little South Of Sanity - Livin' On The Edge.mp3"
    11.     WinMP.currentPlaylist.insertItem (WinMP.currentPlaylist.Count), sMedia ' Adds Playlist Item
    12. End Sub
    13.  
    14. Private Sub List1_Click()
    15. Set sMedia = WinMP.currentPlaylist.Item(List1.ListIndex)
    16. WinMP.Controls.playItem sMedia
    17. End Sub

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width