如何创建一个按钮来调用我的 VSTO 加载项?

发布于 2024-11-27 12:42:08 字数 53 浏览 0 评论 0原文

我需要在工作表上创建一个按钮,它将调用我的 VSTO 加载项中的函数。我怎样才能做到这一点?

I need to create a button on the worksheet, that will call function in my VSTO add-in. How I can achieve this?

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

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

发布评论

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

评论(1

凶凌 2024-12-04 12:42:08

查看这个有用的链接:
http://vbadud.blogspot.com /2008/11/call-method-in-vsto-addin-from-visual.html

正如它所说,您需要确保已将其公开以供外部使用。一旦完成,来自 Excel 的调用将如下所示:

Sub Execute_VSTO_Addin_Macro()

Dim oAddin As COMAddIn
Dim oCOMFuncs As Object

Set oAddin = Application.COMAddIns("CallVSTOExample")
Set oCOMFuncs = oAddin.Object

oCOMFuncs.SayHello

End Sub

Check out this helpful link:
http://vbadud.blogspot.com/2008/11/call-method-in-vsto-addin-from-visual.html

As it says, you need to make sure you have exposed it for external use. Once it is, the call from excel would look something like this:

Sub Execute_VSTO_Addin_Macro()

Dim oAddin As COMAddIn
Dim oCOMFuncs As Object

Set oAddin = Application.COMAddIns("CallVSTOExample")
Set oCOMFuncs = oAddin.Object

oCOMFuncs.SayHello

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