191 kbps? Hmm... either you got yourself a funky MP3 or it's VBR... But Enya is nice relaxation music
Thanks for the source, too. Nice and clean! (Most of my programs are getting overrun with stuff that I could put into a few modules and get it cleaned up )
I updated the zip file because i found a bug in the get song title thingy, it crashed when winamp just has loaded and don't have a valid songname in it's caption.
Public Function strWinampTitle() As String
Dim strCaption As String
strCaption = strGettext(hwnd_winamp)
If Len(strCaption) > 11 Then
strCaption = Mid(strCaption, InStr(strCaption, ".") + 2, InStr(strCaption, " - Winamp") - 4)
If Right(strCaption, 1) = " " Then strCaption = Mid(strCaption, 1, Len(strCaption) - 1)
strWinampTitle = strCaption
Else
strWinampTitle = "No Song Playing"
End If
End Function