Playing cd's with mci question

I am trying to write some code to play a CD from a drive and the user can indicate what track to play.

I should be using this format, as far as I know:
mciSendString("open cdaudio", null, 0, IntPtr.Zero);
mciSendString("play cdaudio from 3:00:00:00 to 4:00:00:00", null, 0, IntPtr.Zero);

So this would play from the 3rd track to the 4th.

This does not work, it seems to start in the middle of the first track or the track that I want to paly (3). Any advice

Thanks



Answer this question

Playing cd's with mci question