Reload Method
Applies To
Document object.
Description
Reloads a cached document by resolving the hyperlink to the document and downloading it. This method is available only with cached documents (it cannot be used with FAT files).
Note If the document has been accessed before, this method ensures that the cached version of the specified document isn't used. If the specified document wasn't opened from the World Wide Web or a local intranet, an error occurs.
Syntax
expression.Reload
expression Required. An expression that returns a Document object.
See Also
Follow method, FollowHyperlink method.
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