Creating a CD inventory program with track listings for each CD...

G

Guest

How do I get the track listing to change when I am viewing a new CD? I am at
the point where I've got a query that will list *all* the tracks but I can't
get it to just list the tracks for the CD I am currently viewing. Can anyone
help?

Thanks!
 
M

Michel Walsh

Hi,


Either with the MCI


Dim mciPlayParam As MCI_PLAY_PARMS
mciPlayParam.From= trackNo
mciPlayParam.To = trackNo + 1
mciSendCommand( device, MCI_PLAY, MCI_FROM OR MCI_TO,
mciPlayParam )


(see VBA Developer's Handbook, as example, at Sybex, by Getz and Gilbert,
for more details )



either use the API for the Windows MediaPlayer (see their SDK ).



Hoping it may help,
Vanderghast, Access MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top