hi!
i am trying to change the title of a media player object:
Private Sub stam()
Dim wm As New WindowsMediaPlayer
wm.URL = "C:\Documents and Settings\All Users\Documents\My Music\Sample Music\New Stories (Highway Blues).mpg"
MsgBox wm.currentPlaylist.getItemInfo("title")
wm.setItemInfo("title" ,"hello")
End Sub
the getitemifo works well, but not the setiteminfo
i get a messege: "compiler error expected ="
why?