Autodesk inventor 无法安装
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Autodesk inventor 无法安装相关的知识,希望对你有一定的参考价值。
win7 64位旗舰版。就是这样。后来单独安装第一个能装上。软件是Autodesk官网上下的学生版,别人机器上能装上,估计是我系统有问题,装KB976038装不上。不想重装系统,手里也没有好系统,怎么办?
参考技术A 这个问题我也遇到过,而且知道里面根本找不到答案,告诉你解决的办法吧:把你WIN7系统的自动更新打开,让它自己升级,一直升到最新,然后重启,再安装就OK了。
启动 Autodesk Inventor 实例
【中文标题】启动 Autodesk Inventor 实例【英文标题】:Start an Instance of Autodesk Inventor 【发布时间】:2013-08-14 18:37:20 【问题描述】:我正在使用 Inventor api 来自定义发明者文档。这里我使用 vb.net 代码来启动 Inventor 的一个实例。我的代码是
inventorApp = CreateObject("Inventor.Application", "")
inventorApp.Visible = True
没关系,工作正常。但是当我们以管理员身份打开 Visual Studio 时,createobject 出现了一些错误。有人知道启动 Inventor 实例的其他方法吗?
【问题讨论】:
什么是“一些错误”? 无法创建 ActiveX 组件。 你在项目属性中引用了COM吗? 【参考方案1】:尝试改用 marshal 方法。
Dim m_inventorApp As Inventor.Application
Try ' Try to use active inventor instance
Try
m_inventorApp = System.Runtime.InteropServices.Marshal.GetActiveObject("Inventor.Application")
m_inventorApp.SilentOperation = True
Catch ' If not active, create a new instance of Inventor
Dim inventorAppType As Type = System.Type.GetTypeFromProgID("Inventor.Application")
m_inventorApp = System.Activator.CreateInstance(inventorAppType)
' Must set visible explicitly
m_inventorApp.Visible = True
m_inventorApp.SilentOperation = True
End Try
Catch
'Cant get or create an instance of inventor.
End Try
【讨论】:
【参考方案2】:Private Sub Open_Button_Click()
ThisApplication.SilentOperation = True 'Suppresses the resolve links dialog
Dim myPath As String
myPath = FileName.Text 'Gets the string, FileName, from module 1
Dim Shell As Object
Set Shell = CreateObject("Shell.Application")
Shell.Open (myPath) 'Opens selected file
Resolve_and_Open.Hide 'Hides module
CompareStrings
End Sub
这是打开一个需要解析链接的悲伤程序集。我不确定这是否会解决该错误,但请尝试使用:
ThisApplication.SilentOperation = True
要么这样,要么创建一个外壳,然后以这种方式而不是直接打开它。
【讨论】:
以上是关于Autodesk inventor 无法安装的主要内容,如果未能解决你的问题,请参考以下文章
使用 python 自动化 Autodesk Inventor