I want to get an active Word.Applicatio n, via
using System.Runtime. InteropServices ;
using Word;
...
object obj = Marshal.GetActi veObject("Word. Application");
_Application wordApp = obj as _Application;
It works fine at my developer computer. At an other computer the application
crash with an exception.
But I can't catch the exception.
Anybody know what is wrong.
Thanks in advance
Thomas
using System.Runtime. InteropServices ;
using Word;
...
object obj = Marshal.GetActi veObject("Word. Application");
_Application wordApp = obj as _Application;
It works fine at my developer computer. At an other computer the application
crash with an exception.
But I can't catch the exception.
Anybody know what is wrong.
Thanks in advance
Thomas
Comment