Document.AddToFavorites Method

Word Developer Reference

Creates a shortcut to the document or hyperlink and adds it to the Favorites folder.

Syntax

expression.AddToFavorites

expression   Required. A variable that represents a Document object.

Example

This example creates a shortcut for each hyperlink in the active document and adds it to the Favorites folder.

Visual Basic for Applications
  For Each myHyperlink In ActiveDocument.Hyperlinks
    myHyperlink.AddToFavorites
Next myHyperlink

This example creates a shortcut to Sales.doc and adds it to the Favorites folder. If Sales.doc isn't currently open, this example opens it from the C:\Documents folder.

Visual Basic for Applications
  For Each doc in Documents
    If LCase(doc.Name) = "sales.doc" Then isOpen = True
Next doc
If isOpen <> True Then Documents.Open _
    FileName:="C:\Documents\Sales.doc"
Documents("Sales.doc").AddToFavorites

See Also