Message 1 of 5
Part List Column Width iLogic

Not applicable
06-11-2013
07:11 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I found the following code on Curtis Waguespack site.
http://inventortrenches.blogspot.com/2011/02/ilogic-code-for-parts-lists-title.html
'start of iLogic code---------------------------------------------------------------------------------- 'sort parts list on error resume next Dim oDrawDoc As DrawingDocument oDrawDoc = ThisApplication.ActiveDocument Dim oPartsList1 As PartsList oPartsList1 = oDrawDoc.ActiveSheet.PartsLists.Item(1) 'If oPartsList1 Is Nothing Then Resume Next oPartsList1.Sort("PART NUMBER") oPartsList1.Renumber oPartsList1.SaveItemOverridesToBOM
Is there a way to have the Collum Width bypass the predefined setting from the Styles, to have them auto adjust?