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

  • Thread starter Thread starter Guest
  • Start date Start date
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!
 
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
 
Back
Top