Audio Controls?

Speedular

New member
Joined
Dec 15, 2008
Messages
3
Programming Experience
Beginner
Hey guys
I kinda need some help on an application I'm trying to develop concerning audio; on the application I'm trying to add audio MP3 track and is there any way that i can control the Mp3 file (Play, Pause, Stop)? and is there a way if paused to get the current time of track?
 
There is no support for audio in the .NET Framework other than for WAV files and then it's basically only to play a file. If you want media player functionality then you have to use a media player component. One option is to use Windows Media Player, which basically all Windows users will have installed. You can add the ActiveX control to your form to provide a UI or you can create the non-ActiveX equivalent in code and provide your own UI.
 
Back
Top