创建同一 OCX 的多个实例
我必须加载几个 OCX 库才能访问遗留代码。 我正在使用 Activator.CreateInstance 创建实例:
var type = Type.GetTypeFromProgID(ProgId);
var comObject = Activator.CreateInstance(type);
不幸的是 Activator.CreateInstance 似乎每个 ProgId 只创建一个实例,但是我需要具有不同配置的多个实例。
示例:假设我使用允许设置值的 OCX:
var instance1 = Create(progId);
Set(instance1, "key", "1");
var value1 = Get(instance1, "key"); // returns 1
var instance2 = Create(progId);
Set(instance2, "key", "2");
var value2 = Get(instance2, "key"); // returns 2
var value3 = Get(instance1, "key"); // returns 2
我需要一种方法来多次实例化一个 OCX(相同的 ProgId)控件,而无需仅获取对一个实例的引用。
I have to load a couple of OCX libraries to access legacy code.
I am creating the instance using Activator.CreateInstance:
var type = Type.GetTypeFromProgID(ProgId);
var comObject = Activator.CreateInstance(type);
Unfortunately Activator.CreateInstance seems to create only one instance per ProgId, however I need multiple instances with different configurations.
Example: Assuming I am using an OCX wich allows to set a value:
var instance1 = Create(progId);
Set(instance1, "key", "1");
var value1 = Get(instance1, "key"); // returns 1
var instance2 = Create(progId);
Set(instance2, "key", "2");
var value2 = Get(instance2, "key"); // returns 2
var value3 = Get(instance1, "key"); // returns 2
I need a way to instantiate one OCX (same ProgId) control multiple times without getting handed references to just one instance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过将 OCX 更改为不使用全局变量,问题已得到解决。谢谢汉斯·帕桑特。
Problem has been solved by changing the OCX to not use global variables. Thanks Hans Passant.