Hi i am trying to save a screenshot file to the following path C:\Users\Rn\Desktop\ScreenshotCaptor. But i cant change the screenshot directory.
i used the following link to find the commandline options :
https://www.donation...ptor/help/index.html please find my code below. any help is appreciated.
////////////////////////////// VC++ code //////////////////////////////
CString sApp = _T("C:\\Program Files (x86)\\ScreenshotCaptor\\ScreenshotCaptor.exe");
CString sParameters = _T("-show -capture screen -format png -dir \"C:\\Users\\Rn\\Desktop\\ScreenshotCaptor\" ");
CString sWorkDir = _T("C:\\Users\\Rn\\Desktop\\ScreenshotCaptor");
int nRet = (int)ShellExecute(NULL, NULL, sApp, sParameters, sWorkDir, SW_SHOWNORMAL);
/////////////////////////////////////////////////////////////////////////////