I am starting to learn VBScripting and MM. Bare with me, I really don't know VBScript, but I do know non-object based programming, I just need a little helping hand...
I don't understand how to access the results of a SDB.Database.QuerySongs command.
Here is a code segment...
Code: Select all
MsgBox(itm.Title)
Set iter = SDB.Database.QuerySongs("AND SongTitle='" & itm.Title & "'")
if iter.EOF then
MsgBox("No title found")
else
MsgBox("Found at least one...")
end if
I get the "Found" msg when I run my code, what I don't know is how to access the results of the QuerySongs command. As a starting point I'd like to do
MsgBox(iter.Artist) or some such command to see the artist (and album) of the song I have found.
Can anybody help out here?
Thanks