D
Dean Richardson
Hello,
We are currently running Word in a form OK. However, we need to run a
dedicated instance. In order to run this instance, as a service we use
the following code:
Dim p As New ProcessStartInfo("winword.exe", "/x")
Process.GetCurrentProcess().StartInfo = p
Currently to execute word in vb.net so that we can get a handle on it,
we use:
dim wrdapp as New Word.Application.
Is there a way to have wrdapp run the application with the /x switch
as we need to get a handle on the application to open documents within
this.
Thanks in Advance,
Dean
We are currently running Word in a form OK. However, we need to run a
dedicated instance. In order to run this instance, as a service we use
the following code:
Dim p As New ProcessStartInfo("winword.exe", "/x")
Process.GetCurrentProcess().StartInfo = p
Currently to execute word in vb.net so that we can get a handle on it,
we use:
dim wrdapp as New Word.Application.
Is there a way to have wrdapp run the application with the /x switch
as we need to get a handle on the application to open documents within
this.
Thanks in Advance,
Dean