• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Discussion Groups

    Autodesk Inventor Customization

    Reply
    Valued Contributor
    Posts: 72
    Registered: ‎09-21-2006

    Search for suppressed constraints

    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

    Please use plain text.
    Valued Contributor
    Posts: 56
    Registered: ‎11-12-2007

    Re: Search for suppressed constraints

    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

    Please use plain text.
    Valued Contributor
    Posts: 72
    Registered: ‎09-21-2006

    Re: Search for suppressed constraints

    01-18-2013 02:03 AM in reply to: Frederic007

    Thank you very much. I'll give it a try.

    Please use plain text.