Reload Method

Microsoft Word Visual Basic

Reloads a cached document by resolving the hyperlink to the document and downloading it.

Note  This method reloads the document asynchronously; that is, statements following the Reload method in your procedure may execute before the document is actually reloaded. Because of this, you may get unexpected results from using this method in your macros.

expression.Reload

expression    Required. An expression that returns a Document object.

Example

This example opens and reloads the hyperlink to the address "main" on a local intranet.

With ActiveDocument
    .FollowHyperlink Address:="http://main"
    .Reload
End With