RecalcHyperlinks Method

Microsoft FrontPage Visual Basic

Recalculates all meta data on the server for the specified Web site. This operation will rebuild all hyperlinks, titles for Web pages, themes on pages, and so on in a Microsoft FrontPage Web site.

Note  This operation may take a long time to complete depending on the amount of meta data on the server.

expression.RecalcHyperlinks

expression    An expression that returns a WebEx object.

Example

The following example recalculates the hyperlinks for the active Web site.

Private Sub RecalcLinks()
    Dim myWeb As WebEx

    Set myWeb = Application.ActiveWeb

    myWeb.RecalcHyperlinks
End Sub