Close a document : Word Document « Word « VBA / Excel / Access / Word






Close a document

 
Sub exitFor()
    Dim Doc As Document
    For Each Doc In Documents
        If Doc.Name = "Document1" Then Exit For
        Doc.Close
    Next Doc
End Sub

 








Related examples in the same category

1.Add a word document
2.To create a new document that uses a specific template, use this:
3.Open an Existing Document
4.Save Changes to a Document
5.To save a document with a new name, use the SaveAs method
6.To close a specific document, you can close the active document or you can specify a document name:
7.Save a document
8.Generating Word 2000 data from an Excel VBA program
9.Load contact table from Access and create letter in Word