|
This is my code:
1.Process p = newProcess();
2.p.StartInfo.FileName = strKitsEditorPath;
3.p.StartInfo.Arguments = CurrentKit.Path + "," + m_strSection + "," + m_strKey;
4.p.Start();
5.p.WaitForExit();
After line 4 the calling process gets stuck - the screen turns white and I have to kill it. I don't get back to line 5. There is no problem with the process I'm calling to. But it doesn't happen every time..
Thanks
|