Message 1 of 5
Set a value in "QTY" Bomlist
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi,
I have this Ilogic code to find "BandL in subassembly''s in my assembly :
Dim total As Double = 0 Dim adoc As AssemblyDocument = ThisDoc.Document For Each occ As ComponentOccurrence In adoc.ComponentDefinition.Occurrences Dim val As Double Try val = Parameter(occ.Name, "BandL") total = total + val Catch End Try Next occ MessageBox.Show("Total length: " & total)
I need to set the "Total" in to a "Part" QTY in my assembly bomlist.
The filename of the part is different, it depense of witch type i need. But the part filename contains S1100 or S2400 and it is a content center file
How do I do that?
Regards
GM