创建同一 OCX 的多个实例

发布于 2024-10-14 11:45:28 字数 659 浏览 5 评论 0原文

我必须加载几个 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 技术交流群。

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

发布评论

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

评论(1

千笙结 2024-10-21 11:45:28

通过将 OCX 更改为不使用全局变量,问题已得到解决。谢谢汉斯·帕桑特。

Problem has been solved by changing the OCX to not use global variables. Thanks Hans Passant.

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