M
mcl chan
Hello all,
I'm using below code for c# app to call another app
{
System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc Enable.RaisingEvents=false;
proc StartInfo.Filename="anotherapp.exe" ;
proc StartInfor.Arguments="1234";
proc Start();
}
I'm able to call up anotheapp.exe within c# app successfully but the
data (1234) that i wanted in anotherapp.exe 's inputbox is blank.
Is there any way round to achieve this condition ?
Thanks for your help .
mcl
I'm using below code for c# app to call another app
{
System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc Enable.RaisingEvents=false;
proc StartInfo.Filename="anotherapp.exe" ;
proc StartInfor.Arguments="1234";
proc Start();
}
I'm able to call up anotheapp.exe within c# app successfully but the
data (1234) that i wanted in anotherapp.exe 's inputbox is blank.
Is there any way round to achieve this condition ?
Thanks for your help .
mcl