使用VBA关注超链接

时间:2017-08-29 12:10:14

标签: vba ms-word ms-office word-vba

如何关注Microsoft Word 2016中的超链接?

这在Excel中运行良好:

' Works in Excel
Sub FollowURL()
    ActiveCell.Hyperlinks(1).Follow
End Sub

但是,当我尝试将ActiveCell更改为Selection时(假设有必要使用Word),它无法正常工作:

' Doesn't work in Word
Sub FollowURL()
    Selection.Hyperlinks(1).Follow
End Sub

1 个答案:

答案 0 :(得分:1)

怎么样:

' Note: Ensure the selection contains "http://..."
' for example: http://www.google.com

ActiveDocument.FollowHyperlink Selection.Text

注意:您检查防火墙是否允许将此功能用作@john c。学家在评论中提到。