为 Excel 数据实现发布/订阅加载项

发布于 2024-12-15 08:34:47 字数 94 浏览 4 评论 0原文

我想实现一个 Excel 插件,它允许我沿着 JMS 发布-订阅模型发布单元格中的数据,或者订阅数据并将其填充到单元格中。

有没有任何示例代码可以做到这一点?

I would like to implement an Excel addin which allows me to publish the data in a cell, or subscribe to data and populate that into a cell, along the JMS Publish-Subscribe Model.

Is there any sample code which does that?

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

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

发布评论

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

评论(1

悸初 2024-12-22 08:34:47

对于第二部分(订阅),通常使用 RTD 功能。也许 MSDN 文档 是最好的起点。您需要构建一个实现预定义接口 (IRtdServer) 的 RTD 服务器(COM 自动化服务器)。

对于第一部分(发布),您可以尝试通过 VBA 和通常由供应商提供的库访问消息传递层(非常确定您可以使用 Tibco RV 来完成)。如果没有合适的库可用 - 您将需要构建一个。

For the second part (subscription) the RTD function is usually used. Probably MSDN documentation is the best starting point. You will need to build an RTD server (COM automation server) which implements a predefined interface (IRtdServer).

For the first part (publishing) you can try to access messaging layer via VBA and a library usually provided by a vendor (pretty sure that you can do it with Tibco RV). If there is no appropriate library available - you will need to build one.

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