ExtraInfoRequired Property Example
This example inserts a hyperlink to www.msn.com and then follows the hyperlink if extra information isn't required.
With Selection
.Collapse Direction:=wdCollapseEnd
.InsertAfter "MSN "
.Previous
End With
Set myLink = ActiveDocument.Hyperlinks.Add( _
Address:="http://www.msn.com", _
Anchor:=Selection.Range)
If myLink.ExtraInfoRequired = False Then
myLink.Follow
End If