S
Sohaib Al-Husseini
Hi,
I am developing a webpatr that would open a certain infpath template; I used
the following code:
\\==========
System.Diagnostics.Process infopathprocess = new
System.Diagnostics.Process();
infopathprocess.StartInfo.Arguments = "c:\\ProjectServer2.xsn";
infopathprocess.StartInfo.FileName = "INFOPATH.EXE";
infopathprocess.StartInfo.CreateNoWindow = false;
infopathprocess.StartInfo.WindowStyle =
System.Diagnostics.ProcessWindowStyle.Normal;
infopathprocess.Start();
\\===========
The problem is that INFOPATH.EXE opens in the backgroud process in the Task
Manager! the infopath form itself is not opening.
Can you help me solving this problem,
Thanks
I am developing a webpatr that would open a certain infpath template; I used
the following code:
\\==========
System.Diagnostics.Process infopathprocess = new
System.Diagnostics.Process();
infopathprocess.StartInfo.Arguments = "c:\\ProjectServer2.xsn";
infopathprocess.StartInfo.FileName = "INFOPATH.EXE";
infopathprocess.StartInfo.CreateNoWindow = false;
infopathprocess.StartInfo.WindowStyle =
System.Diagnostics.ProcessWindowStyle.Normal;
infopathprocess.Start();
\\===========
The problem is that INFOPATH.EXE opens in the backgroud process in the Task
Manager! the infopath form itself is not opening.
Can you help me solving this problem,
Thanks