0

我使用 vb.net 使用 Inventor api 编程。这是我打开发明者应用程序的代码。

inventorApp = CreateObject("Inventor.Application")
            inventorApp.Visible = True
            Dim oDoc As Document
            oDoc = inventorApp.Documents.Open("F:\inventor\Cube.ipt")

代码工作正常,在 Visual Studio 中调试时打开文档,工作正常。但我试图在此处输入图像描述在本地 IIS 中托管这个 Web 应用程序,然后尝试显示以下错误。

任何人都知道是什么问题。

4

1 回答 1

1

这很可能是一个安全问题。如果要创建 ActiveX 组件,必须使用 dcomcnfg.exe 添加权限

看看乔治的回答: http ://www.velocityreviews.com/forums/t81423-re-vb-net-excel-automation-issue-cannot-create-activex-component.html

顺便说一句,我建议使用 Inventor Apprentice Library。它完成了 Inventor 所做的大部分事情,但速度更快。

于 2013-07-28T18:23:15.853 回答