Recalculates all meta data on the server for this web. This operation will rebuild FrontPageās knowledge of all hyperlinks, titles for web pages, themes on pages, and so on.
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.
This example recalculates the hyperlinks for the active web.
Private Sub RecalcLinks()
Dim myWeb As WebEx
Set myWeb = Application.ActiveWeb
myWeb.RecalcHyperlinks
End Sub