如何查找 ActiveX 控件生成的事件的调度 ID

发布于 2024-12-07 01:25:02 字数 191 浏览 1 评论 0原文

我正在使用 FireBreath 为 activeX 控件编写一个包装类。

ActiveX 容器类有一个事件接收器,用于侦听 ActiveX 控件触发的事件。

在创建事件接收器的代码中,SINK_ENTRY_INFO 方法中的参数之一是事件的调度 id。

我在哪里可以找到 ActiveX 控件生成的事件的调度 ID?

I am writing a wrapper class for an activeX control using FireBreath.

The ActiveX container class has an event sink which listens to the events fired by ActiveX control.

In the code creating the event sink, in the SINK_ENTRY_INFO method one of the parameter is dispatch id of the event.

Where will i find the dispatch id of the event generated by the activeX control?

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

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

发布评论

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

评论(1

把回忆走一遍 2024-12-14 01:25:02

获取 DISPID 的方法与获取对象上任何其他成员的方法相同。您可以使用 firebreath 中的 IDispatchAPI 对象:

https:/ /github.com/firebreath/FireBreath/blob/master/src/ActiveXCore/IDispatchAPI.cpp#L444

Get the DISPID the same as you would for any other member on the object. You can probably use the IDispatchAPI object from firebreath:

https://github.com/firebreath/FireBreath/blob/master/src/ActiveXCore/IDispatchAPI.cpp#L444

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