R
Rick
I am attempting to insert hyperlinks in a protected
document using the suggestions at:
http://word.mvps.org/FAQs/TblsFldsFms/HLinksInforms.htm
The first entry in the manual index is 1. Mission
Statement and the hyperlink should drop the user to the
Mission Statement in the manual. Here is the syntax of
the code behind the hyperlink:
{ MacroButton "FollowLink"{HYPERLINK \l "Mission"} }
<the character after the "\" is the letter l>
The link works on double-click as long as the document is
unprotected. After protecting the document a double-
click flashes the Mission Statement for a brief instance
and then the cursor anchors at the very top of the
document well above the Index.
There is only a bookmark at the destination
named "Mission". The macro is:
Sub FollowLink()
Selection.Hyperlinks(1).Follow
End Sub
Anyone able to identify the problem and suggest a
solution?
TIA
document using the suggestions at:
http://word.mvps.org/FAQs/TblsFldsFms/HLinksInforms.htm
The first entry in the manual index is 1. Mission
Statement and the hyperlink should drop the user to the
Mission Statement in the manual. Here is the syntax of
the code behind the hyperlink:
{ MacroButton "FollowLink"{HYPERLINK \l "Mission"} }
<the character after the "\" is the letter l>
The link works on double-click as long as the document is
unprotected. After protecting the document a double-
click flashes the Mission Statement for a brief instance
and then the cursor anchors at the very top of the
document well above the Index.
There is only a bookmark at the destination
named "Mission". The macro is:
Sub FollowLink()
Selection.Hyperlinks(1).Follow
End Sub
Anyone able to identify the problem and suggest a
solution?
TIA