Prevent display update while running rule
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi,
I'm working on an assembly where I use iLogic and Forms to update dimensions, constraints, and parts.
It all works well, but when I run my "Update rule", which updates all rules in the assembly, I want to prevent Inventor from updating the display until all parts and settings are updated.
The closest I've come is using a suggestion I found on these forums earlier:
ThisApplication.ScreenUpdating = False
... some iLogic commands ...
ThisApplication.ScreenUpdating = True
However, this freezes the whole application, while I only want to prevent the assembly display to not update.
I've seen this being done on other assemblies, but cannot for the life of me figure out how it is done.
I hope I've stated my issue in an understandable way, please ask for additional info if that is needed.