Document.Activate Method

Word Developer Reference

Activates the specified document so that it becomes the active document.

Syntax

expression.Activate

expression   Required. A variable that represents a Document object.

Example

This example activates the document named "Sales.doc."

Visual Basic for Applications
  Sub OpenSales()
   'Sales.doc must exist and be open but not active.
   Documents("Sales.doc").Activate
End Sub

See Also