in a C++/CLI program I'm using
System::Diagnostics::Process::Start("D:\\users\\Z\\project1\\Sent_0.93\\plotCon\\tester\\bin\\Debug\\tester.exe","20 D:\users\Z\project1\Bright20");
to call the tester.exe, which is another project written in C# (but I think it doesn't matter here) then something strange happens now. If I debug the C# program with command line arguments given in project setting, it's working as expected. If I call this C# program from Start menu->run, it's also working fine. but with the given line above, the C# program is started, but behaves quite wierd. So the question is why and how to change the C++ code to make its calling have exactly the same effect as I call from "Start->run"
Thank you