B
Bruce Rodtnick
I have a database that has my music information in it. If I have an mp3
of that piece of music a button appears so I can play the music. BUT, I
can't get it to play. I want an application to open, in this case
Winamp, which is my default music player, and play my mp3. I've been
trying to use a shell for it to just call the mp3, but I can't get it to
work. Here is my code:
Dim strPlaySong As String
strPlaySong = "mp3\" & Me!Name & ".mp3"
Shell = strPlaySong
I've also tried:
Call Shell(strPlaySong) ', vbNormalFocus
I don't want to use Dev Ashish's or Allen Brown's sound modules because
I want to be able to stop the mp3 (it can be 6 minutes long).
Any ideas?
Bruce Rodtnick
of that piece of music a button appears so I can play the music. BUT, I
can't get it to play. I want an application to open, in this case
Winamp, which is my default music player, and play my mp3. I've been
trying to use a shell for it to just call the mp3, but I can't get it to
work. Here is my code:
Dim strPlaySong As String
strPlaySong = "mp3\" & Me!Name & ".mp3"
Shell = strPlaySong
I've also tried:
Call Shell(strPlaySong) ', vbNormalFocus
I don't want to use Dev Ashish's or Allen Brown's sound modules because
I want to be able to stop the mp3 (it can be 6 minutes long).
Any ideas?
Bruce Rodtnick