Message 1 of 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi All,
I am using Inventor 2023, and just messing around with some basic iLogic Rules (quite new stuff for me)...
I found in old threads some example for a BOM sorting by columns and add the "Auto Sort on Update" check box enabled.
the following code is sorting correctly the BOM in the drawing, but is not checking out the "Auto Sort" check box, am I missing something?
TIA
On Error Resume Next Dim oDrawDoc As DrawingDocument oDrawDoc = ThisApplication.ActiveDocument Dim oPartsList1 As PartsList oPartsList1 = oDrawDoc.ActiveSheet.PartsLists.Item(1) oPartsList1.Sort2("ITEM", 1, AutoSortOnUpdate, True) oPartsList1.Renumber oPartsList1.SaveItemOverridesToBOM
Solved! Go to Solution.