09-26-2023
09:41 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
09-26-2023
09:41 AM
Or maybe you are simply asking about how to open File on disk, and get a reference to the Document that gets loaded into Inventor's session memory when that happens. Here is an alternate version of your code where an example of that is used:
Dim Path As String = "C:\Vault\Drawings\"
Dim DrwStr As String = "0002289721.idw"
Dim oDrawDoc As DrawingDocument = ThisApplication.Documents.Open(Path & DrwStr, True)
Wesley Crihfield
(Not an Autodesk Employee)