J
Jeni
I use the typical macro for hyperlinks in a password protected form.
Typical Hyperlink Macro:
Sub FollowLink()
Selection.Hyperlinks(1).Follow
End Sub
Sub AutoExec()
Options.ButtonFieldClicks = 1
End Sub
But for some reason, it does not work on every pc in my company's footprint.
It will work on my pc, but not on my co-worker's.
Does anyone know what the reason would be?
Is it a personal setting?
Can the code be further modified?
I know about unprotecting sections, but I did *not* want to go that route.
Additional Notes:
-The macro is resting in the actual document (*not* a template or even a
module).
-Security settings are set to LOW or MEDIUM, and the macro has *not* been
duplicated by the end users. Personal settings seems to be mirroring mine.
-Outlook is already open.
-Connection to the internet is active.
-We're all running the same versions of Word, Outlook, and Windows.
I have even tried re-writting the macro to be more direct:
Sub FollowLink1()
Dim x As Integer
x = Selection.Hyperlinks.Count
ActiveDocument.FollowHyperlink ("mailto[email protected]")
End Sub
In this example, I would have to write a macro for *each* link separately,
but this method worked with a previous client; however, now it's not working
for another client.
Please help. I'm out of ideas.
Typical Hyperlink Macro:
Sub FollowLink()
Selection.Hyperlinks(1).Follow
End Sub
Sub AutoExec()
Options.ButtonFieldClicks = 1
End Sub
But for some reason, it does not work on every pc in my company's footprint.
It will work on my pc, but not on my co-worker's.
Does anyone know what the reason would be?
Is it a personal setting?
Can the code be further modified?
I know about unprotecting sections, but I did *not* want to go that route.
Additional Notes:
-The macro is resting in the actual document (*not* a template or even a
module).
-Security settings are set to LOW or MEDIUM, and the macro has *not* been
duplicated by the end users. Personal settings seems to be mirroring mine.
-Outlook is already open.
-Connection to the internet is active.
-We're all running the same versions of Word, Outlook, and Windows.
I have even tried re-writting the macro to be more direct:
Sub FollowLink1()
Dim x As Integer
x = Selection.Hyperlinks.Count
ActiveDocument.FollowHyperlink ("mailto[email protected]")
End Sub
In this example, I would have to write a macro for *each* link separately,
but this method worked with a previous client; however, now it's not working
for another client.
Please help. I'm out of ideas.