如何关注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
答案 0 :(得分:1)
怎么样:
' Note: Ensure the selection contains "http://..."
' for example: http://www.google.com
ActiveDocument.FollowHyperlink Selection.Text
注意:您检查防火墙是否允许将此功能用作@john c。学家在评论中提到。