Start process in the same folder as the .dll
hi all, a short question
in visual basic i start a process (.exe) in the same folder as the other (.exe) like this:
and normaly you run like this in C++
how can i make it in C++ like this :
becouse Application.startuppath don´t work in c++
please help me
thx
in visual basic i start a process (.exe) in the same folder as the other (.exe) like this:
Code:
process.start(Application.StartupPath & "\test.exe")
Code:
system("c:\\test.exe");
Code:
process.start(Application.StartupPath & "\test.exe")
please help me
thx
sory

