安装 Microsoft 消息队列 (MSMQ) ActiveX 的步骤?

发布于 2024-10-03 12:42:50 字数 155 浏览 4 评论 0原文

在 Windows Vista Business 上,我安装了 MSMQ 核心组件,但看不到“Microsoft 消息队列”ActiveX(我想将其导入 Delphi)。

要验证我的安装,我应该在哪里查找 ActiveX 文件? MSMQ 服务已安装并使用系统目录中的可执行文件。

On Windows Vista Business, I installed the MSMQ core components but I can not see a 'Microsoft Message Queuing' ActiveX (I want to import it in Delphi).

To verify my install, where should I look for the ActiveX file? The MSMQ service is installed and uses an executable in the system directory.

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

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

发布评论

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

评论(1

豆芽 2024-10-10 12:42:50

http:// /www.borlandtalk.com/threaded-com-msmq-listener-on-client-app-not-a-com-server-vt109777.html显示必须有MSMQ类型库(它使用MSMQ_TLB和类型如 MSMQQueueInfo,以及 FQueue := CoMSMQQueue.Create;) 等代码

要创建 Delphi 包装器代码,您可以使用以下命令:

tlibimp -P c:\windows\system32\mqoa30.tlb

这将创建一个 pas 和一个 dcr(组件资源)文件

http://www.borlandtalk.com/threaded-com-msmq-listener-on-client-app-not-a-com-server-vt109777.html shows that there must be MSMQ type library (it uses MSMQ_TLB and types like MSMQQueueInfo, and code like FQueue := CoMSMQQueue.Create;)

To create the Delphi wrapper code you can use the following command:

tlibimp -P c:\windows\system32\mqoa30.tlb

This will create a pas and a dcr (component resource) file

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