Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi,
I use a very good iLogic for me. To assign a description ti parts in assembly environment.
Dim oOccurrence As ComponentOccurrence
msg = "Select a component (press ESC to exit)"
While True
oOccurrence = ThisApplication.CommandManager.Pick(SelectionFilterEnum.kAssemblyOccurrenceFilter, msg)
' If nothing gets selected then we're done
If IsNothing(oOccurrence) Then Exit While
oName = oOccurrence.Name
ThisApplication.ActiveDocument.selectset.select(oOccurrence)
oDesc = iProperties.Value(oName, "Project", "Description")
oDesc = InputBox(oName & " Description", "iLogic", oDesc)
If Not oDesc = Nothing Then iProperties.Value(oName, "Project", "Description") = oDesc
End While
Is it possible to edit that iLogic in a way that the toolbox has two fields. Existing field and one more field with description current assembly (also possible to change)?
Something like this
Solved! Go to Solution.