Hour glass on word import - using interop
I have a windows form that is performing a word import. The import is performed in a class called wordimport task( that which is invoked by the form).
Now I tried setting the cursor of the word object(_wordApp = new Word.ApplicationClass();) by the following step _wordApp.System.Cursor = Word.WdCursorType.wdCursorWait, but the hour glass does not appear.
Any suggestions is greatly appreciated.
[415 byte] By [
kseshagi] at [2007-11-11 8:13:36]

# 2 Re: Hour glass on word import - using interop
the hour glass should appear on the form, there is no word form. The interop api's when accessed from the base form kills the hour glass of the base form, therefore I am trying to set the hour glass of the word interop.
Thanks