SHORT VERSION OF MY QUESTION:
I have a document, titled "DocumentThatOpensThenCloses.doc", that does exactly what I want it to do. It opens and then closes itself, but leaves all other Word documents open. The code is as follows:
Private Sub Document_Open()
ActiveDocument.Close
End Sub...