Here is my question. Consider the following code:

Set Wrd = CreateObject("Word.Application")
Wrd.Visible = True
Wrd.WindowState = wdWindowStateMaximized
Wrd.Documents.Open sFile
Set Wrd = Nothing


Here I created a Word object and had it load a particular file. Let's say I want to process the new file after it has been changed/updated by the user. How would I do this? I can't simply process it right after the previous code b/c that would be the original file. I think i need some kind of event that tells me if the file has been saved in the word object.. Any ideas?

thanks guys,
jMan