One thing can help
See below :
GetProjectDir(PrjDir);
sprintf(HelpFile, "%s%s", PrjDir, "\\Help\\index.html");
Err = ShellExecute(NULL, "open", HelpFile, NULL, NULL, SW_SHOWNORMAL);
Here I wanted to launch Explorer (or the default web browser) in order to display an help file contained in one html file.
In this case I find usefull to use the Windows SDK ShellExecute function call.
You can do the same if you want your application play one mp3 file using the player. The player which will be used is the one that show up when you double click on one mp3 file name. Simply replace the html file path with the path to the mp3 file.
Regards, Philippe proud to be using LabWindows since version 1.2
// --------------------------------------------------------------------------------------------