How to execute an .exe from c++ console application. I have try the following methods none have worked.
I want to run a application i have created a while back "Radio.exe". this application reads an xml file at startup, if I manually run this application it works fine, but if run it via console application "Radio.exe" cant find the xml file?
void execute( char* path)
{
// cant find xml ?
ShellExecuteA( NULL, NULL, path, NULL, NULL, SW_SHOW );
// cant find xml ?
ShellExecute(NULL, NULL, path, NULL, NULL, SW_SHOWNORMAL);
// and also cant find xml ?
SHELLEXECUTEINFO rSEI ={0};
rSEI.cbSize=sizeof( rSEI );
rSEI.lpVerb= NULL;
rSEI.lpFile= "C:\\Users\\me\\Documents\\Radio.exe"; // = path
rSEI.lpParameters= 0;
rSEI.nShow = SW_NORMAL;
rSEI.fMask = SEE_MASK_NOCLOSEPROCESS;
ShellExecuteEx( &rSEI );
}
Radio.exesearch for the file? – Doug Ramsey Aug 6 '12 at 14:51