在 .NET 2.0 CF 中使用 COM 对象而不调用 CreateObject
我需要在 .NET 2.0 紧凑框架项目中使用 COM 对象,但无法使用 CreateObject 函数。是否有其他方法可以调用适用于我的环境的 COM 对象?
I need to use a COM object in my .NET 2.0 compact framework project, but I can't use the CreateObject function. Is there any other way to call a COM object that will work in my environment?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要调用 CoCreateInstance()。您可以在此处找到 P/Invoke 声明。如果您只有 ProgID,那么您需要先调用 CLSIDFromProgID()。确保您已经用尽了为 COM 服务器 (Tlbimp.exe) 查找类型库的所有可能性,这种代码不容易获得正确的结果。
You'll need to call CoCreateInstance(). You can find a P/Invoke declaration for it here. If you only have a ProgID then you need to call CLSIDFromProgID() first. Make sure you've exhausted all possibilities of finding a type library for the COM server (Tlbimp.exe), this kind of code isn't easy to get right.