Process.Start concatenating cmd line from previous invocation
- by Ralph
Hi,
I am using a Process.Start in .Net 2.0 to start a child win32 app.
Process.start ( "SomeProcess.exe", "<Cmd line>" );
The process runs fine but and the user then closes this window. However if I then run the same process again in the same session, the cmd line recieved by the called process is now a concatentation of the previous call. I.e SomeProcess.exe recieves the cmd line " SomeProcess.exe ".
Has anyone else seen this behaviour before?
Any help much appreciated.
Ralph.