Any other question that is not specific to an aspect of development or tool can be posted in the General chat forum.
By following these guidelines we make sure that the forums remain easy to read for everybody and also that the right people can find your post to answer it.
TCHAR szFolderPath[MAX_PATH];
hr = SHGetFolderPath(NULL, CSIDL_PROGRAM_FILES, NULL, SHGFP_TYPE_CURRENT,
szFolderPath);
//****** Insert here the path to the prog you want to exec **************
TCHAR pg[] = L"D:\Program Files (x86)\Concorde Performance System\CPS.EXE\0" ;
// Concat path + program name
wcscat(szFolderPath, pg) ;
::CreateProcess(NULL, pg, NULL, NULL, FALSE,
NORMAL_PRIORITY_CLASS, NULL, NULL, &si, &pi) ;
break;
Is it possible to add a C# managed code dll to add-on menu or just C++.