Determining if a document has been activated - word 2000???????

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;
}
}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top