Maybe it doesn't exist but any help would be greatly appreciated
I'd like to simply save a current playlist to my own directory not WMP1's directory
I don't want to mess with WMP1's default directories
Private Sub Create_a_PlayList(ByRef songs() As String, ByVal name As String)
Dim listCollection As IWMPPlaylistCollection
Dim list As IWMPPlaylist
Dim wmpMedia As IWMPMedia
Dim i As Integer
Dim PlayListArray As IWMPPlaylistArray
'Set PlayListArray = listCollection.getAll
'Set list = listCollection.newPlaylist(name)
'wmplay.currentPlaylist = list
' This simple code creates a current playlist
For i = 0 To UBound(songs)
Set wmpMedia = wmplay.newMedia(songs(i))
wmplay.currentPlaylist.appendItem wmpMedia
Next i
wmplay.Controls.play
'Now, how do I save this playlist to my directory, not the one
'referenced by Windows Media Player
' where my directory = mdir
' something like wmplay.currentplaylist.save=mdir & name ???
End Sub
Thank you for looking
Paul
paul1145 0 Newbie Poster
paul1145 0 Newbie Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.