Closing the Document (with various options):
Return to List
ActiveDocument.Close' You'll be prompted to save changes if any are present ActiveDocument.Close(wdDoNotSaveChanges)' Without saving changes ActiveDocument.Close(wdSaveChanges)' If you wish to save any changes ActiveDocument.Close(wdPromptUser)' To have Word prompt the user to choose a save format ActiveDocument.Close(wdOriginalDocumentFormat)' To have Word use the original document format ActiveDocument.Close(wdWordDocument)' To use the Word Document format