<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Delete external and internal iLogic rules in IPT and break link with parent. in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/delete-external-and-internal-ilogic-rules-in-ipt-and-break-link/m-p/9093586#M102242</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/922800"&gt;@machiel.veldkamp&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can run this on the iPart factory (parent file) to break the link of all the ipart members (children)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Dim oParent As iPartFactory
oParent = ThisDoc.Document.ComponentDefinition.iPartFactory
Dim oRow As iPartTableRow
For Each oRow In oParent.TableRows
	oParent.CreateMember(oRow).BreakLinkToFactory
Next

&lt;/PRE&gt;
&lt;P&gt;You can try this to delete event triggers&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Sub Main

oDoc = ThisApplication.ActiveEditDocument

'---------------------------------------------------------		
'[ delete all existing event triggers
	'Get access to the set of Event Triggers
	Dim oEventTriggersSet As PropertySet
	oEventTriggersSet = GetEventTriggersSet(oDoc)


	Dim oRuleTrigger As Inventor.Property	

	For Each oRuleTrigger In oEventTriggersSet
		oRuleTrigger.Delete
	Next
']


End Sub


Function GetEventTriggersSet(oDoc As Document) As Inventor.PropertySet
    On Error Resume Next
    oEventTriggersSet = oDoc.PropertySets.Item("iLogicEventsRules")
 
    If oEventTriggersSet Is Nothing Then
        oEventTriggersSet = oDoc.PropertySets.Item("_iLogicEventsRules")
    End If
 
    If oEventTriggersSet.InternalName &amp;lt;&amp;gt; "{2C540830-0723-455E-A8E2-891722EB4C3E}" Then
        Call oEventTriggersSet.Delete
        oEventTriggersSet = oDoc.PropertySets.Add("iLogicEventsRules", "{2C540830-0723-455E-A8E2-891722EB4C3E}")
    End If
 
    If oEventTriggersSet Is Nothing Then
        oEventTriggersSet = oDoc.PropertySets.Add("iLogicEventsRules", "{2C540830-0723-455E-A8E2-891722EB4C3E}")
    End If
 
    If oEventTriggersSet Is Nothing Then
		Trace.WriteLine("!!!!!!! oEventTriggersSet is Nothing !!!!!!", "iLogic") ''debug
		'Logger.Info("!!!!!!! oEventTriggersSet is Nothing !!!!!!")

        Exit Function
    End If
    On Error Goto 0
 
    Return oEventTriggersSet
End Function

&lt;/PRE&gt;
&lt;P&gt;I hope this helps.&lt;BR /&gt;Best of luck to you in all of your Inventor pursuits,&lt;BR /&gt;Curtis&lt;BR /&gt;&lt;A href="http://inventortrenches.blogspot.com" target="_blank"&gt;http://inventortrenches.blogspot.com&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 17 Oct 2019 21:53:00 GMT</pubDate>
    <dc:creator>Curtis_Waguespack</dc:creator>
    <dc:date>2019-10-17T21:53:00Z</dc:date>
    <item>
      <title>Delete external and internal iLogic rules in IPT and break link with parent.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/delete-external-and-internal-ilogic-rules-in-ipt-and-break-link/m-p/9092980#M102233</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a litteral ton of iParts that I need to edit in the coming days.&lt;/P&gt;&lt;P&gt;All of them need this done:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;They are iParts, the children of the parent so to speak.&lt;/P&gt;&lt;P&gt;I need to break the link with the parent.ipt&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There are also a bunch of iLogic rules that are in the event triggers. Some external and some internal. all of them need to be removed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then lastly I want to save the file but I know how to so that XD&lt;/P&gt;&lt;P&gt;-------------&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I found this but I'm having trouble finding good sources on how to break a link with a parent in just one IPT.&lt;/P&gt;&lt;DIV class="gmail_default"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="gmail_default"&gt;&lt;A href="https://forums.autodesk.com/t5/inventor-customization/supress-link-with-base-component-ilogic/td-p/4781353" target="_blank" rel="noopener"&gt;https://forums.autodesk.com/t5/inventor-customization/supress-link-with-base-component-ilogic/td-p/4781353&lt;/A&gt;&lt;/DIV&gt;&lt;DIV class="gmail_default"&gt;&lt;A href="https://beinginventive.typepad.com/being-inventive/2012/02/injecting-ilogic-code-and-ilogic-event-triggers-automatically.html" target="_blank" rel="noopener"&gt;https://beinginventive.typepad.com/being-inventive/2012/02/injecting-ilogic-code-and-ilogic-event-triggers-automatically.html&lt;/A&gt;&lt;/DIV&gt;&lt;DIV class="gmail_default"&gt;&lt;A href="https://forums.autodesk.com/t5/inventor-forum/how-to-use-ilogic-rule-to-delete-rules-and-features-in-other/td-p/3573914" target="_blank" rel="noopener"&gt;https://forums.autodesk.com/t5/inventor-forum/how-to-use-ilogic-rule-to-delete-rules-and-features-in-other/td-p/3573914&lt;/A&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can anyone point me in the direction on how to tackle this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;The iPartMember Object has the gives the breaklinktofile method but I'm not sure on how to implement it. &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Oct 2019 17:32:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/delete-external-and-internal-ilogic-rules-in-ipt-and-break-link/m-p/9092980#M102233</guid>
      <dc:creator>machiel.veldkamp</dc:creator>
      <dc:date>2019-10-17T17:32:28Z</dc:date>
    </item>
    <item>
      <title>Re: Delete external and internal iLogic rules in IPT and break link with parent.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/delete-external-and-internal-ilogic-rules-in-ipt-and-break-link/m-p/9093586#M102242</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/922800"&gt;@machiel.veldkamp&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can run this on the iPart factory (parent file) to break the link of all the ipart members (children)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Dim oParent As iPartFactory
oParent = ThisDoc.Document.ComponentDefinition.iPartFactory
Dim oRow As iPartTableRow
For Each oRow In oParent.TableRows
	oParent.CreateMember(oRow).BreakLinkToFactory
Next

&lt;/PRE&gt;
&lt;P&gt;You can try this to delete event triggers&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Sub Main

oDoc = ThisApplication.ActiveEditDocument

'---------------------------------------------------------		
'[ delete all existing event triggers
	'Get access to the set of Event Triggers
	Dim oEventTriggersSet As PropertySet
	oEventTriggersSet = GetEventTriggersSet(oDoc)


	Dim oRuleTrigger As Inventor.Property	

	For Each oRuleTrigger In oEventTriggersSet
		oRuleTrigger.Delete
	Next
']


End Sub


Function GetEventTriggersSet(oDoc As Document) As Inventor.PropertySet
    On Error Resume Next
    oEventTriggersSet = oDoc.PropertySets.Item("iLogicEventsRules")
 
    If oEventTriggersSet Is Nothing Then
        oEventTriggersSet = oDoc.PropertySets.Item("_iLogicEventsRules")
    End If
 
    If oEventTriggersSet.InternalName &amp;lt;&amp;gt; "{2C540830-0723-455E-A8E2-891722EB4C3E}" Then
        Call oEventTriggersSet.Delete
        oEventTriggersSet = oDoc.PropertySets.Add("iLogicEventsRules", "{2C540830-0723-455E-A8E2-891722EB4C3E}")
    End If
 
    If oEventTriggersSet Is Nothing Then
        oEventTriggersSet = oDoc.PropertySets.Add("iLogicEventsRules", "{2C540830-0723-455E-A8E2-891722EB4C3E}")
    End If
 
    If oEventTriggersSet Is Nothing Then
		Trace.WriteLine("!!!!!!! oEventTriggersSet is Nothing !!!!!!", "iLogic") ''debug
		'Logger.Info("!!!!!!! oEventTriggersSet is Nothing !!!!!!")

        Exit Function
    End If
    On Error Goto 0
 
    Return oEventTriggersSet
End Function

&lt;/PRE&gt;
&lt;P&gt;I hope this helps.&lt;BR /&gt;Best of luck to you in all of your Inventor pursuits,&lt;BR /&gt;Curtis&lt;BR /&gt;&lt;A href="http://inventortrenches.blogspot.com" target="_blank"&gt;http://inventortrenches.blogspot.com&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Oct 2019 21:53:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/delete-external-and-internal-ilogic-rules-in-ipt-and-break-link/m-p/9093586#M102242</guid>
      <dc:creator>Curtis_Waguespack</dc:creator>
      <dc:date>2019-10-17T21:53:00Z</dc:date>
    </item>
    <item>
      <title>Re: Delete external and internal iLogic rules in IPT and break link with parent.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/delete-external-and-internal-ilogic-rules-in-ipt-and-break-link/m-p/9094038#M102246</link>
      <description>&lt;P&gt;That's perfect &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/105031"&gt;@Curtis_Waguespack&lt;/a&gt; Thank you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This will save me hours!&lt;/P&gt;</description>
      <pubDate>Fri, 18 Oct 2019 07:12:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/delete-external-and-internal-ilogic-rules-in-ipt-and-break-link/m-p/9094038#M102246</guid>
      <dc:creator>machiel.veldkamp</dc:creator>
      <dc:date>2019-10-18T07:12:48Z</dc:date>
    </item>
    <item>
      <title>Re: Delete external and internal iLogic rules in IPT and break link with parent.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/delete-external-and-internal-ilogic-rules-in-ipt-and-break-link/m-p/9094143#M102247</link>
      <description>&lt;P&gt;Hey &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/105031"&gt;@Curtis_Waguespack&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried editting it so it'd work for iAssembles as well but there's a compiler error I'm getting&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN style="color: #800000;"&gt;RUsure&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;MessageBox&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Show&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;"This rule MUST be run on the iPart Master part. It will break all links with the children. CONTINUE?"&lt;/SPAN&gt;, &lt;SPAN style="color: #008080;"&gt;"BULK DRAWING TOOL"&lt;/SPAN&gt;, &lt;SPAN style="color: #800000;"&gt;MessageBoxButtons&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;YesNo&lt;/SPAN&gt;, &lt;SPAN style="color: #800000;"&gt;MessageBoxIcon&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Question&lt;/SPAN&gt;)


&lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;RUsure&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;vbNo&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Then&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;Exit&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Sub&lt;/SPAN&gt; &lt;SPAN style="color: #808080;"&gt;'User wants to quit the Rule. &lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt;

&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oParentPart&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;iPartFactory&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oParentAssy&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;iAssemblyFactory&lt;/SPAN&gt;

&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oRow&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;iPartTableRow&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oRowAssy&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;iAssemblyTableRow&lt;/SPAN&gt;



&lt;SPAN style="color: #ff0000;"&gt;On&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Error&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Resume&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Next&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;oParentPart&lt;/SPAN&gt; = &lt;SPAN style="color: #800080;"&gt;ThisDoc&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;Document&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;ComponentDefinition&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;iPartFactory&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;oParentAssy&lt;/SPAN&gt; = &lt;SPAN style="color: #800080;"&gt;ThisDoc&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;Document&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;ComponentDefinition&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;iAssemblyFactory&lt;/SPAN&gt;

&lt;SPAN style="color: #ff0000;"&gt;For&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Each&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oRow&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;In&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oParentPart&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;TableRows&lt;/SPAN&gt;
	&lt;SPAN style="color: #800000;"&gt;oParentPart&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;CreateMember&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;oRow&lt;/SPAN&gt;).&lt;SPAN style="color: #800000;"&gt;BreakLinkToFactory&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Next&lt;/SPAN&gt;

&lt;SPAN style="color: #ff0000;"&gt;For&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Each&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oRowAssy&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;In&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oParentAssy&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;TableRows&lt;/SPAN&gt;
	&lt;SPAN style="color: #800000;"&gt;oParentAssy&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;CreateMember&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;oRowAssy&lt;/SPAN&gt;).&lt;SPAN style="color: #800000;"&gt;BreakLinkToFactory&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Next&lt;/SPAN&gt;

&lt;SPAN style="color: #800000;"&gt;MessageBox&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Show&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;"End of rule reached"&lt;/SPAN&gt;, &lt;SPAN style="color: #008080;"&gt;"Title"&lt;/SPAN&gt;)&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;The &lt;SPAN style="color: #800000;"&gt;oParentAssy&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;CreateMember&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;oRowAssy&lt;/SPAN&gt;).&lt;SPAN style="color: #800000;"&gt;BreakLinkToFactory&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;doesn't produce a value it says...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any tips?&lt;/P&gt;</description>
      <pubDate>Fri, 18 Oct 2019 08:31:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/delete-external-and-internal-ilogic-rules-in-ipt-and-break-link/m-p/9094143#M102247</guid>
      <dc:creator>machiel.veldkamp</dc:creator>
      <dc:date>2019-10-18T08:31:57Z</dc:date>
    </item>
    <item>
      <title>Re: Delete external and internal iLogic rules in IPT and break link with parent.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/delete-external-and-internal-ilogic-rules-in-ipt-and-break-link/m-p/9094691#M102255</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/922800"&gt;@machiel.veldkamp&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This should output the member files (the same as right clicking on the members in the browser and choosing Generate Files) however it does't work... so that is why the break link function does not work.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm not sure why this is not working in iAssemblies, there might simply be something else we have to do first, but I'm not sure.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Dim oParent As iAssemblyFactory
oParent = ThisDoc.Document.ComponentDefinition.iAssemblyFactory

Dim oRow As iAssemblyTableRow

For Each oRow In oParent.TableRows
	oParent.CreateMember(oRow)
Next&lt;/PRE&gt;
&lt;P&gt;In any case, here is an example that gets the iAssembly cache folder from the factory file, and opens each assembly, then checks to make sure it is an iAssembly member and then breaks the link, saves and closes&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Dim oParent As iAssemblyFactory
oParent = ThisDoc.Document.ComponentDefinition.iAssemblyFactory

Dim oRow As iAssemblyTableRow
Dim oDoc As AssemblyDocument
Dim oDef As AssemblyComponentDefinition

oMemberFolder = oParent.MemberCacheDir

Dim fileEntries As String() = System.IO.Directory.GetFiles(oMemberFolder,"*.iam")
Dim fileName As String
For Each fileName In fileEntries
	oDoc = ThisApplication.Documents.Open(fileName, False)
	oDef = oDoc.ComponentDefinition
	If oDef.IsiAssemblyMember Then
		oMember = oDef.iAssemblyMember
		oMember.BreakLinkToFactory
		oDoc.save
	End If
	oDoc.close
Next&lt;/PRE&gt;
&lt;P&gt;I hope this helps.&lt;BR /&gt;Best of luck to you in all of your Inventor pursuits,&lt;BR /&gt;Curtis&lt;BR /&gt;&lt;A href="http://inventortrenches.blogspot.com" target="_blank" rel="noopener"&gt;http://inventortrenches.blogspot.com&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Oct 2019 12:51:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/delete-external-and-internal-ilogic-rules-in-ipt-and-break-link/m-p/9094691#M102255</guid>
      <dc:creator>Curtis_Waguespack</dc:creator>
      <dc:date>2019-10-18T12:51:11Z</dc:date>
    </item>
    <item>
      <title>Re: Delete external and internal iLogic rules in IPT and break link with parent.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/delete-external-and-internal-ilogic-rules-in-ipt-and-break-link/m-p/12586147#M164234</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/105031"&gt;@Curtis_Waguespack&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;Hope you are doing well, I tired to do the file generation for IPT and break link, it is working for few components and if i close those members and open them again, the link is still there. Can you tell me what would be causing this.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 27 Feb 2024 18:01:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/delete-external-and-internal-ilogic-rules-in-ipt-and-break-link/m-p/12586147#M164234</guid>
      <dc:creator>dparmarF6BDE</dc:creator>
      <dc:date>2024-02-27T18:01:06Z</dc:date>
    </item>
  </channel>
</rss>

