嵌入式 Office 应用程序 - 如何知道应用程序是否正在运行或对象是否已嵌入

发布于 2024-09-05 20:35:18 字数 206 浏览 3 评论 0原文

我正在 Word 中添加一个 Excel Worksheet 对象。 Excel 附加了一个 COM 插件。知道如何知道 Excel 是独立运行还是作为嵌入对象运行吗?

当嵌入的 Excel 对象在 Word 中激活(双击)时,附加到 Excel 的 COM 插件就会加载。我正在 OnConnection(...) 或其他可以告诉 Excel 对象状态的方法中寻找某种属性或参数。

I am adding an Excel Worksheet object inside Word. Excel has a COM addin attached to it. Any idea how one can know whether Excel is running independently or as an embedded object?

The COM Addin attached to Excel loads when the embedded Excel object is activated (double-clicked) inside Word. I am looking for some kind of a property or a parameter in OnConnection(...) or other method that can tell the state of Excel object.

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

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

发布评论

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

评论(1

明媚如初 2024-09-12 20:35:19

尝试使用 Application 对象的 UserControl 属性。

UserControl 属性 如果应用程序可见或已存在,则为 true
由用户创建或启动。错误的
如果您创建或启动了
通过使用以编程方式应用
CreateObject 或 GetObject
功能,应用程序是
隐。读/写布尔值。

我已经很长时间没有使用这个属性了,所以我不确定它对您的具体情况有帮助。

Try the UserControl property of the Application object.

UserControl Property True if the application is visible or if it was
created or started by the user. False
if you created or started the
application programmatically by using
the CreateObject or GetObject
functions, and the application is
hidden. Read/write Boolean.

It has been a long time since I had to use this property, so I am not sure it will help in your specific case.

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