Message 1 of 7

Not applicable
02-20-2020
05:44 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
In the Inventor 2019 version this rule works correctly, but in the Inventor 2020 version the rule does not work correctly, it does not perform the "Try" part.
Why?
Rules:
Dim oComps As DocumentsEnumerator oComps = ThisApplication.ActiveDocument.AllReferencedDocuments Dim oComp As Document For Each oComp In oComps Try iLogicVb.RunRule(oComp.DisplayName & ":1", "Tempo") Catch ThisApplication.Documents.Open(oComp.FullFileName) ThisApplication.Documents.Open(oComp.FullFileName).Close End Try Next
Solved! Go to Solution.