Autodesk Inventor Customization
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Search for suppressed constraint s
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
53 Views, 2 Replies
01-16-2013 11:29 PM
Hello together,
how could I search for suppressed constraints and list them in a Listbox.
Thank you very much
Georg
Re: Search for suppressed constraint s
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
01-17-2013 02:05 AM in reply to:
GeorgK
In this case you need a userform, a listbox named ListBox1 and a commandbutton named CommandButton1
put the code in the sub CommandButton1_Click() , run the form and press the button
Private Sub CommandButton1_Click()
Dim oAssDoc As AssemblyDocument
Set oAssDoc = ThisApplication.ActiveDocument
Dim oConstraint As AssemblyConstraint
For Each oConstraint In oAssDoc.ComponentDefinition.Constraints
If oConstraint.HealthStatus = kSuppressedHealth Then
Call ListBox1.AddItem(oConstraint.Name)
End If
Next oConstraint
End Sub
Re: Search for suppressed constraint s
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
01-18-2013 02:03 AM in reply to:
Frederic007
Thank you very much. I'll give it a try.
