CD MUSIC

Started by
0 comments, last by thekid 24 years, 2 months ago
hi i need some examples or articles on how to play a music file from the cd. thanx
Advertisement
how i play cd audio is to put in a Microsoft multimedia activeX control, make it invisible, then where ever you want it to play you just type:
//cd is the variable of the control
cd.SetDeviceType("CDAudio");
cd.SetCommand("Open");
cd.SetCommand("Play");

this will only work in visual c++ though

This topic is closed to new replies.

Advertisement