I made this app for winamp, when you open winamp, it asks you to chose from a list of different lists... It works on Win98 (that's what I used to have) why won't it work with winXP?
Thx in advance
Printable View
I made this app for winamp, when you open winamp, it asks you to chose from a list of different lists... It works on Win98 (that's what I used to have) why won't it work with winXP?
Thx in advance
bump
bump
Hmm , do you get any error msg ?
No, but it doesn't load any list... it loads 3 things: Kazaa, AlexList, Winamp, and something else. but they arent songs... theyre just.. names
Weird :rolleyes:
Are you sure of getting the right paths ?
Try this in your command1 button, I think this 'll work.
Hope it helps...VB Code:
Private Sub Command1_Click() Dim i As Long Do Until FindWinamp DoEvents Shell GetWinampPathAndExeFile, vbNormalFocus Loop Screen.MousePointer = vbHourglass For i = 0 To List1.ListCount - 1 DoEvents Shell GetWinampPathAndExeFile & " /ADD " & Chr(34) & List1.List(i) Next i Screen.MousePointer = vbDefault End End Sub
Cheers!