S
Stuart Hunter
I have class that creates a word application document using the following
basic code:
Public Sub CreateDocument()
Dim app As Word.Application
app = New Word.Application
...
End Sub
This works as expected when called from a console application. However,
when the same code is called via .NET remoting, the application hangs at app
= New Word.Application. The code does not return from this line and no
exception is thrown.
There is no problem with the remoting setup as all other methods return as
expected.
Has anyone else experienced and resolved this?
Thanks,
Stuart
basic code:
Public Sub CreateDocument()
Dim app As Word.Application
app = New Word.Application
...
End Sub
This works as expected when called from a console application. However,
when the same code is called via .NET remoting, the application hangs at app
= New Word.Application. The code does not return from this line and no
exception is thrown.
There is no problem with the remoting setup as all other methods return as
expected.
Has anyone else experienced and resolved this?
Thanks,
Stuart