[Mono-winforms-list] Run One Exe from another exe
Umashankar Ashwathnarayanan
umashankara@dpsl.net
Thu, 27 Jan 2005 19:39:38 +0530
Hi
I am running one simple Program that call another exe
Code :
System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.EnableRaisingEvents=false;
proc.StartInfo.FileName="WindowTest";
proc.StartInfo.Arguments="WindowTest.exe";
proc.Start(); proc.WaitForExit();
This is call when i press the button.
The WindowTest.exe is present in bin folder of the application,
When i Press the button ,
it call that Speficied file/path is not present
Can any body help me.
Kumar