Hi,
it seem to doesn't work -_-...in order to CreateProcess, the EXE must have /load /config test2 to load the config file when the exe opens...here's CreateProcess:
Code:
CreateProcess("C:\\configeditor\\ceditor.exe",
"/load /config defaultc",
NULL,
NULL,
FALSE,
0,
NULL,
NULL,
&s,
&p);
and i've tried:
Code:
CreateProcess("C:\\configeditor\\ceditor.exe /load /config defaultc",
NULL,
NULL,
NULL,
FALSE,
0,
NULL,
NULL,
&s,
&p);
it doesn't seem to be doing what i want it to do..because it displays an error "Config needs to be loaded.."