Community
Inventor Programming - iLogic, Macros, AddIns & Apprentice
Inventor iLogic, Macros, AddIns & Apprentice Forum. Share your knowledge, ask questions, and explore popular Inventor topics related to programming, creating add-ins, macros, working with the API or creating iLogic tools.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

open / load Assembly from filesystem

1 REPLY 1
SOLVED
Reply
Message 1 of 2
Anonymous
421 Views, 1 Reply

open / load Assembly from filesystem

How can i open an existing assembly or part file (stored on a local drive) through the API? It should be possible, but i cannot find the required method calls in the API-documentation.

 

Win7 64bit, Autodesk Inventor 2011

Tags (1)
1 REPLY 1
Message 2 of 2
Mike.Wohletz
in reply to: Anonymous

In VBA

 

Public Sub openitem()
Dim strPath As String
strPath = "c:\jobs\widget.ipt"
Dim invDoc As Document
Set invDoc = ThisApplication.Documents.Open(strPath, True)

End Sub

 

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk Design & Make Report