P
PromisedOyster
We are using the Word 2000 object model from C#.
We want to know when a document has been activated, ideally via an
event. (I note that later versions of the object model do have such an
event - ie Activated).
In the interim, is there a property we can can poll????
For example, code something this the snippet below
Word.Document _wordDoc;
_wordDoc.Activate();
for(;
{
if (_wordDoc.IsActive)
{
break;
}
}
We want to know when a document has been activated, ideally via an
event. (I note that later versions of the object model do have such an
event - ie Activated).
In the interim, is there a property we can can poll????
For example, code something this the snippet below
Word.Document _wordDoc;
_wordDoc.Activate();
for(;
{
if (_wordDoc.IsActive)
{
break;
}
}