gpt4 book ai didi

vb.net - 在word中添加超链接,使用vb.net

转载 作者:行者123 更新时间:2023-12-02 15:39:11 26 4
gpt4 key购买 nike

我目前正在尝试通过 VB 程序在 word 中添加指向 web url 的超链接。我正在跌跌撞撞地尝试找到正确的语法以及完成此任务所需的内容,因为我收到了很多无用的 VBA 示例,而这根本不是我需要的。

我的代码如下所示:

sPara2 = oDoc.Content.Paragraphs.Add
sPara2.Range.Text = attachmentRdr("attachmentName")
sPara2.Range.Hyperlinks.Add(attachmentRdr("attachmentPath"))
sPara2.Format.SpaceAfter = 24 '24 pt spacing after paragraph.
sPara2.Range.InsertParagraphAfter()

其中 attachmentRdr 是一个从数据库读取文本字符串(附件名称和路径)的 sqlDatareader。如果我运行这个,我会收到错误参数的错误(它从 hyperlinks.add() 中执行)。

最佳答案

将范围作为第一个参数传递给 Add 函数,后跟您的 URL:

Dim range As Microsoft.Office.Interop.Word.Range
range = Me.Application.Selection.Range
range.Hyperlinks.Add(range, "http://www.microsoft.com")

关于vb.net - 在word中添加超链接,使用vb.net,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14389464/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com