- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi all
I have inherited a large assembly model about 200 parts or so. including 7000+ lines of code and everything is running fine. One problem. We have recently changed from Inventor 2020 to Inventor 2024.
This removes our previous possibility to use Level of Detail to make different views of same model.
As standard our model works in the Design View "iLogic" but i want a design view called "K-Structure" i can use for production drawings where some parts are invisible as a standard and other parts follow the “Main View” (My iLogic Design View)
Is there a smart way how to change the visibility in more than one design view on the same time without having to changing back and forth between the 2 Desing Views?
I currently have the following code snippet to jump back and forth between the 2 Design Views
Thanks in Advance
Dim odoc As Document Dim ocompdef As ComponentDefinition odoc = ThisApplication.ActiveDocument ocompdef = odoc.ComponentDefinition Try ocompdef.RepresentationsManager.DesignViewRepresentations.Item("K-Structure").Activate ocompdef.RepresentationsManager.DesignViewRepresentations.Item("iLogic").Activate Catch MessageBox.Show("This viewrep does not exist", "Error") End Try
Anders S Hammeken
Solved! Go to Solution.