T
thomas
I want to get an active Word.Application, via
using System.Runtime.InteropServices;
using Word;
...
object obj = Marshal.GetActiveObject("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.GetActiveObject("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