热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

查找ActiveXCOM组件的版本-FindtheversionofanActiveXCOMcomponent

IhaveawebapplicationthatusesanActiveXCOMcomponent,forexample:我有一个使用ActiveXCOM组件的Web应用程

I have a web application that uses an ActiveX COM component, for example:

我有一个使用ActiveX COM组件的Web应用程序,例如:


I've produced the ActiveX control myself, and I want to be able to determine in Javascript the version of the control that is installed and being used on the page.

我自己制作了ActiveX控件,我希望能够在Javascript中确定在页面上安装和使用的控件的版本。

I thought I could expose a method on the object than exposed the version number somehow, for example:

我以为我可以在对象上公开一个方法而不是以某种方式暴露版本号,例如:


But that seemed really messy. I wondered if there was a built in COM / ActiveX mechanism for finding version numbers - whats the best way of doing this?

但这似乎非常混乱。我想知道是否有内置的COM / ActiveX机制来查找版本号 - 最好的方法是什么?

1 个解决方案

#1


There is nothing in the ActiveX specs that has the construct of version, you can browse around and see that many ActiveX controls have Version property.
You can improve the code (a little) by providing a Version property instead of a method.

ActiveX规范中没有任何内容具有版本构造,您可以浏览并查看许多ActiveX控件具有Version属性。您可以通过提供Version属性而不是方法来改进代码(一点点)。

You can also provide a version in the codebase and know that you have at least the version ask for.

您还可以在代码库中提供一个版本,并且知道您至少有要求的版本。


推荐阅读
author-avatar
天秤羊子_140
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有