以编程方式向 Outlook 2007 添加超链接按钮

发布于 2024-10-02 20:47:54 字数 385 浏览 5 评论 0原文

我正在向 Outlook 添加一个工具栏。

工具栏上将有一个按钮。

按下此按钮后,将打开一个网站。

我已经创建了按钮 &工具栏没问题,但不知道如何添加超链接?

  Set oTBar = oView.Add("toolbarname")
  oTBar.Position = 1
  oTBar.Visible = true

  Set oButton = OTBar.Controls.Add
  With oButton
      .Caption = "Click here!"
      .Style = 3
      .HyperlinkType = 1
      .FaceId = 1707     
   End with

I am adding a toolbar to Outlook.

The toolbar will have one button on it.

This button, when pressed, will open up a web site.

I've created the button & toolbar no problem, but cannot work out how to add the hyperlink?

  Set oTBar = oView.Add("toolbarname")
  oTBar.Position = 1
  oTBar.Visible = true

  Set oButton = OTBar.Controls.Add
  With oButton
      .Caption = "Click here!"
      .Style = 3
      .HyperlinkType = 1
      .FaceId = 1707     
   End with

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

后来的我们 2024-10-09 20:47:54

哈哈!

您需要将其添加为工具提示:

  .ToolTipText  = "http://your_url"

Haha!

You need to add it as the tooltip:

  .ToolTipText  = "http://your_url"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文