I have an Office WORD add-in. I would like to know how to determine the final full path name of a document after it has been closed.
Specifically, the problem scenario is this. A user creates a new WORD document, makes edits to the document, and then closes the document.
In the Add-in, I detect the creation of the document. The DocumentBeforeClose event then fires. Then WORD prompts "Do you want to save Document1?". Select yes, and the DocumentBeforeSave event fires. Then a SaveAs dialog box displays. The user provides a full path and accepts. WORD then closes.
I cannot find a object model method or event to capture the user's selection.