尝试使 Microsoft Word 中的 CommandButton 打开超链接

尝试使 Microsoft Word 中的 CommandButton 打开超链接

我一直无法尝试让 Word 文档中的 CommandButton 对象在单击时将我重定向到网站。我尝试使用如下 VBA 代码:

Private Sub CommandButton2_Click()
ActiveWorkbook.FollowHyperlinkAddress:="MyWebsite.com"
End Sub

但无济于事。我想可能是因为我直接从我的 Excel 文档中获取了它。

请帮我。

询问您还有其他的疑问。

谢谢。

答案1

在 Word 中,您要使用ActiveDocument而不是ActiveWorkbook来表示您当前正在处理的文件。您还需要链接协议(即 http://、https:// 等)。请尝试以下操作:

Private Sub CommandButton2_Click()
  ActiveDocument.FollowHyperlink Address:="https://MyWebsite.com"
End Sub

相关内容