To save a document with a new name, use the SaveAs method : Word Document « Word « VBA / Excel / Access / Word






To save a document with a new name, use the SaveAs method

 
Sub Main()
    Dim wdApp As Word.Application
    Set wdApp = GetObject(, "Word.Application")
    wdApp.ActiveDocument.SaveAs "C:\MemoTest.docx"
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 close a specific document, you can close the active document or you can specify a document name:
6.Save a document
7.Generating Word 2000 data from an Excel VBA program
8.Load contact table from Access and create letter in Word
9.Close a document