J
Jeanne
I have several Word Forms that are locked and I want to keep the forms locked
but have an emal hyperlink and a website hyperlink. I have a VBA SubProcedure
that I was trying to use
Option Explicit
Sub LockedHyperlinks()
Selection.Hyperlinks(1).Follow
End Sub
{MACROBUTTON "LockedHyperlinks"{HYPERLINK "http://www.vericare.com"}}
and when I run it I get Run-time error '4198':
Command failed
Option Explicit
Sub LockedHyperlinks()
Selection.Hyperlinks(1).Follow -> this section is in
YELLOW so I presume this is the error
End Sub
What am I doind wrong
but have an emal hyperlink and a website hyperlink. I have a VBA SubProcedure
that I was trying to use
Option Explicit
Sub LockedHyperlinks()
Selection.Hyperlinks(1).Follow
End Sub
{MACROBUTTON "LockedHyperlinks"{HYPERLINK "http://www.vericare.com"}}
and when I run it I get Run-time error '4198':
Command failed
Option Explicit
Sub LockedHyperlinks()
Selection.Hyperlinks(1).Follow -> this section is in
YELLOW so I presume this is the error
End Sub
What am I doind wrong