Message 1 of 10
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello Everyone,
I have got an Ilogic implemented in the drawing template that reorders and renumbers the part list. For assemblies and weldments this works fine. But for mono drawings it doesn't. Can somebody help me with a line of code that checks the part list style and if it is mono then does nothing?
Mono part list style:
Parts List - Mono (Kieu)
Thanks in advance.
Koen
Code is below:
Dim oDrawDoc As DrawingDocument oDrawDoc = ThisApplication.ActiveDocument Dim oPartsList1 As PartsList oPartsList1 = oDrawDoc.ActiveSheet.PartsLists.Item(1) oPartsList1.Sort("Opmerkingen", 1, "Kodenummer", 1) oPartsList1.Renumber
Solved! Go to Solution.