<?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: iLogic exit rule on failed Assembly update in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-exit-rule-on-failed-assembly-update/m-p/9788596#M116684</link>
    <description>&lt;P&gt;Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/9382253"&gt;@daniel.puchta&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm thinking maybe check if the design doctor has any warnings or errors. (The red plus sign lights up), I'm guessing this is what you mean by "InventorVb.DocumentUpdate() fails". Because the rule doesn't crash, right?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try this after the update:&lt;/P&gt;
&lt;PRE&gt;&lt;SPAN style="color: #808080;"&gt;'Update document&lt;/SPAN&gt;
&lt;SPAN style="color: #800080;"&gt;InventorVb&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;DocumentUpdate&lt;/SPAN&gt;()
&lt;SPAN style="color: #808080;"&gt;'Exit if any error or warning occurs.&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #800080;"&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;ErrorManager&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;HasErrors&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Or&lt;/SPAN&gt; &lt;SPAN style="color: #800080;"&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;ErrorManager&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;HasWarnings&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;/PRE&gt;
&lt;P&gt;After some testing I see that it behaves as expected if you use ThisDoc.Document.Update, but not if you use InventorVB.DocumentUpdate() for some reason... &lt;/P&gt;
&lt;P&gt;So like this insted maybe?&lt;/P&gt;
&lt;PRE&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;Update&lt;/SPAN&gt;
&lt;SPAN style="color: #808080;"&gt;'Exit if any error or warning occurs.&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #800080;"&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;ErrorManager&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;HasErrors&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Or&lt;/SPAN&gt; &lt;SPAN style="color: #800080;"&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;ErrorManager&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;HasWarnings&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;/PRE&gt;</description>
    <pubDate>Wed, 07 Oct 2020 09:52:25 GMT</pubDate>
    <dc:creator>JhoelForshav</dc:creator>
    <dc:date>2020-10-07T09:52:25Z</dc:date>
    <item>
      <title>iLogic exit rule on failed Assembly update</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-exit-rule-on-failed-assembly-update/m-p/9788495#M116683</link>
      <description>&lt;P&gt;Is there possibility to exit the ilogic rule when InventorVb.DocumentUpdate() fails?&lt;BR /&gt;&lt;BR /&gt;I am working on large assembly file. There are points of base component, to which I am constraining Parts. Part has two points and I am constraining it to two points of base component. Then I move to another part and constrain it to another two points of base component.&lt;BR /&gt;&lt;BR /&gt;I am able to do this via iLogic Rule using For Each Item&amp;nbsp;In oAsmCompDef.Occurrences.AllReferencedOccurrences(oAsmCompDef) where&amp;nbsp;oAsmCompDef is&amp;nbsp;ThisApplication.ActiveDocument.ComponentDefinition. In for cycle there are created constraints to one part.&lt;BR /&gt;&lt;BR /&gt;After constraints are created inside this cycle I update assembly via InventorVb.DocumentUpdate(). However if there is error because of wrong point definition in base component, the rule continues and in next component there is error too. When errors are cumulating, it is painfully slow. Also if I update assembly not in rule but after the rule runs, it is also painfully slow. Is there possibility to exit the rule vhen InventorVb.DocumentUpdate() fails?&lt;/P&gt;</description>
      <pubDate>Wed, 07 Oct 2020 08:57:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-exit-rule-on-failed-assembly-update/m-p/9788495#M116683</guid>
      <dc:creator>daniel.puchta</dc:creator>
      <dc:date>2020-10-07T08:57:00Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic exit rule on failed Assembly update</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-exit-rule-on-failed-assembly-update/m-p/9788596#M116684</link>
      <description>&lt;P&gt;Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/9382253"&gt;@daniel.puchta&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm thinking maybe check if the design doctor has any warnings or errors. (The red plus sign lights up), I'm guessing this is what you mean by "InventorVb.DocumentUpdate() fails". Because the rule doesn't crash, right?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try this after the update:&lt;/P&gt;
&lt;PRE&gt;&lt;SPAN style="color: #808080;"&gt;'Update document&lt;/SPAN&gt;
&lt;SPAN style="color: #800080;"&gt;InventorVb&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;DocumentUpdate&lt;/SPAN&gt;()
&lt;SPAN style="color: #808080;"&gt;'Exit if any error or warning occurs.&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #800080;"&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;ErrorManager&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;HasErrors&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Or&lt;/SPAN&gt; &lt;SPAN style="color: #800080;"&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;ErrorManager&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;HasWarnings&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;/PRE&gt;
&lt;P&gt;After some testing I see that it behaves as expected if you use ThisDoc.Document.Update, but not if you use InventorVB.DocumentUpdate() for some reason... &lt;/P&gt;
&lt;P&gt;So like this insted maybe?&lt;/P&gt;
&lt;PRE&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;Update&lt;/SPAN&gt;
&lt;SPAN style="color: #808080;"&gt;'Exit if any error or warning occurs.&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #800080;"&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;ErrorManager&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;HasErrors&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Or&lt;/SPAN&gt; &lt;SPAN style="color: #800080;"&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;ErrorManager&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;HasWarnings&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;/PRE&gt;</description>
      <pubDate>Wed, 07 Oct 2020 09:52:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-exit-rule-on-failed-assembly-update/m-p/9788596#M116684</guid>
      <dc:creator>JhoelForshav</dc:creator>
      <dc:date>2020-10-07T09:52:25Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic exit rule on failed Assembly update</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-exit-rule-on-failed-assembly-update/m-p/9788751#M116686</link>
      <description>&lt;P&gt;Right, the rule itself does not crash. I tried to add lines in your answer but Inventor just freezes and I have to kill it via task manager.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;The problem is that when I add constraint by rule that is in conflict with another constraint, I need the iLogic rule somehow determine that and immediately exit the rule.&lt;BR /&gt;&lt;BR /&gt;The document update itself takes too long if there is problem with constraint (I think that it tries to resolve all the constraints and now I have more than 1500 of them).&lt;BR /&gt;&lt;BR /&gt;So is there any method how to determine if newly added constraint is in conflict with another? Or just some quicker way than document update? Maybe to check just newly added component or constraint rather than updating the whole assembly?&lt;/P&gt;</description>
      <pubDate>Wed, 07 Oct 2020 11:14:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-exit-rule-on-failed-assembly-update/m-p/9788751#M116686</guid>
      <dc:creator>daniel.puchta</dc:creator>
      <dc:date>2020-10-07T11:14:43Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic exit rule on failed Assembly update</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-exit-rule-on-failed-assembly-update/m-p/9788990#M116689</link>
      <description>&lt;P&gt;Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/9382253"&gt;@daniel.puchta&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You could try checking the healthstatus of the constraint:&lt;/P&gt;
&lt;PRE&gt;&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oConstraint&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;AssemblyConstraint&lt;/SPAN&gt; = &lt;SPAN style="color: #808080;"&gt;'Your recently added constraint&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oConstraint&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;HealthStatus&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;HealthStatusEnum&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;kInconsistentHealth&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;/PRE&gt;
&lt;P&gt;Maybe it'll work, but maybe the healthstatus will be kOutOfDateHealth until you've updated the assembly. You'll just have to try to find out &lt;img class="lia-deferred-image lia-image-emoji" src="https://forums.autodesk.com/html/@B4D44A73814D7FC0D950DEDFACB97081/emoticons/1f642.png" alt=":slightly_smiling_face:" title=":slightly_smiling_face:" /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Oct 2020 12:49:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-exit-rule-on-failed-assembly-update/m-p/9788990#M116689</guid>
      <dc:creator>JhoelForshav</dc:creator>
      <dc:date>2020-10-07T12:49:19Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic exit rule on failed Assembly update</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-exit-rule-on-failed-assembly-update/m-p/9789030#M116692</link>
      <description>&lt;P&gt;Thank you for your answer.&lt;BR /&gt;&lt;BR /&gt;I tried it but to determine whether constraint is in InconsistentHealth status, I need to update document. And so this is not working for me because the update freezes Inventor and I have to kill it.&lt;BR /&gt;&lt;BR /&gt;Without update the result was for both cases the same&lt;/P&gt;</description>
      <pubDate>Wed, 07 Oct 2020 13:09:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-exit-rule-on-failed-assembly-update/m-p/9789030#M116692</guid>
      <dc:creator>daniel.puchta</dc:creator>
      <dc:date>2020-10-07T13:09:05Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic exit rule on failed Assembly update</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-exit-rule-on-failed-assembly-update/m-p/9789087#M116695</link>
      <description>&lt;P&gt;yeah... I suspected that would be the case...&lt;/P&gt;
&lt;P&gt;Then I'm sorry to say that I don't think there's a solution for this. Inventor need to recalculate the relationships in order to know wehter or not the constraint is inconsistent with another constraint and I'm pretty sure that can only be achieved through update/rebuild.&lt;/P&gt;
&lt;P&gt;I can't say I'm 100% sure though, because when adding a constraint, if it works, the component will jump in place as a preview before you hit apply. So Inventor must have some way of analyzing this before the constraint even exist. I don't think any functionality like that is exposed through the API though... Even if it did was, I'd guess the assembly would have to be up to date for it to work, so I don't think adding multiple constraints without updating the assembly before each one would work either way.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Oct 2020 13:29:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-exit-rule-on-failed-assembly-update/m-p/9789087#M116695</guid>
      <dc:creator>JhoelForshav</dc:creator>
      <dc:date>2020-10-07T13:29:31Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic exit rule on failed Assembly update</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-exit-rule-on-failed-assembly-update/m-p/9791146#M116732</link>
      <description>&lt;DIV class="lia-message-author-with-avatar"&gt;&lt;SPAN class="UserName lia-user-name lia-user-rank-Advisor lia-component-message-view-widget-author-username"&gt;JhoelForshav,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;thanks a lot. What I am doing right now is that after component is constrained I update the document. And if the update fails Inventor freezes so I am seeing where the problem is. Then I kill inventor via task manager, reopen assembly and repair the problematic place.&lt;BR /&gt;&lt;BR /&gt;But it would be better to do this without having to kill Inventor. It would be great to chek constraint error before creating it, because the way I am doing it now, the assembly is always up to date before new constraint creation.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Oct 2020 11:06:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-exit-rule-on-failed-assembly-update/m-p/9791146#M116732</guid>
      <dc:creator>daniel.puchta</dc:creator>
      <dc:date>2020-10-08T11:06:16Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic exit rule on failed Assembly update</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-exit-rule-on-failed-assembly-update/m-p/9791197#M116733</link>
      <description>&lt;P&gt;Ok... As I said I'm fairly sure that there is no functionality exposed through the API to examine a constraint before it has been placed. I don't really know how this constraint preview you get while setting constriants manually works, but I'm thinking that probably this would be very slow in your case as well...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Maybe it wouldn't be as slow if you performed the update "silently" (don't update the view)&lt;/P&gt;
&lt;PRE&gt;&lt;SPAN style="color: #800080;"&gt;InventorVb&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;DocumentUpdate&lt;/SPAN&gt;(&lt;SPAN style="color: #ff0000;"&gt;False&lt;/SPAN&gt;)&lt;/PRE&gt;
&lt;P&gt;And then check the health status of the constraint?&amp;nbsp;&lt;img class="lia-deferred-image lia-image-emoji" src="https://forums.autodesk.com/html/@3E5F6F5F61A59A319E954F4832B72305/emoticons/1f914.png" alt=":thinking_face:" title=":thinking_face:" /&gt; &lt;/P&gt;</description>
      <pubDate>Thu, 08 Oct 2020 11:38:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-exit-rule-on-failed-assembly-update/m-p/9791197#M116733</guid>
      <dc:creator>JhoelForshav</dc:creator>
      <dc:date>2020-10-08T11:38:17Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic exit rule on failed Assembly update</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-exit-rule-on-failed-assembly-update/m-p/9791274#M116734</link>
      <description>&lt;P&gt;I found another quicker way. In base component in which I have defined points to which I am constraining, i run this rule:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Dim bod1 As WorkPoint&lt;BR /&gt;Dim bod2 As WorkPoint&lt;BR /&gt;Dim vzdalenost As Double&lt;BR /&gt;Dim maxpolozka = 0&lt;BR /&gt;For Each Item In ThisApplication.ActiveDocument.ComponentDefinition.WorkPoints&lt;BR /&gt;maxpolozka = maxpolozka + 1&lt;BR /&gt;Next&lt;BR /&gt;'MessageBox.Show(Cstr(maxpolozka),"index max bodu")&lt;BR /&gt;'MessageBox.Show(ThisApplication.ActiveDocument.ComponentDefinition.WorkPoints(maxpolozka), "index max bodu")&lt;/P&gt;&lt;P&gt;For i = 1738 To maxpolozka&lt;BR /&gt;bod1 = ThisApplication.ActiveDocument.ComponentDefinition.WorkPoints(i)&lt;BR /&gt;i = i+1&lt;BR /&gt;bod2 = ThisApplication.ActiveDocument.ComponentDefinition.WorkPoints(i)&lt;BR /&gt;'i = i + 1&lt;BR /&gt;'MessageBox.Show(bod1.Name,bod2.Name)&lt;BR /&gt;vzdalenost = Measure.MinimumDistance(bod1.Name, bod2.Name)&lt;BR /&gt;&lt;BR /&gt;If vzdalenost &amp;gt; 283.1 Or vzdalenost &amp;lt; 283&lt;BR /&gt;MessageBox.Show(bod1.Name,CStr(vzdalenost))&lt;BR /&gt;Exit Sub&lt;BR /&gt;End If&lt;BR /&gt;Next&lt;BR /&gt;&lt;BR /&gt;The distance between two neighboring points must be in some tolerance. So i firstly check this in part in which points are defined and after that I run rule for contraint creation in assembly. It is much more quicker than updating the assembly (even with silent operation)&lt;BR /&gt;&lt;BR /&gt;Thank you a lot for your help &lt;img class="lia-deferred-image lia-image-emoji" src="https://forums.autodesk.com/html/@B4D44A73814D7FC0D950DEDFACB97081/emoticons/1f642.png" alt=":slightly_smiling_face:" title=":slightly_smiling_face:" /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Oct 2020 12:12:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-exit-rule-on-failed-assembly-update/m-p/9791274#M116734</guid>
      <dc:creator>daniel.puchta</dc:creator>
      <dc:date>2020-10-08T12:12:27Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic exit rule on failed Assembly update</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-exit-rule-on-failed-assembly-update/m-p/9998084#M119904</link>
      <description>&lt;P&gt;Hi Jhoel,&lt;BR /&gt;&lt;BR /&gt;I noticed that when inventor tries to show the preview, it freezes in large assembly. So even if this functionality would be usable by VBA or iLogic, it would not solved my problem.&lt;BR /&gt;&lt;BR /&gt;The solution really is to check the distance before creating constrain. Anyway thanks a lot for your help.&lt;BR /&gt;&lt;BR /&gt;Dan&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jan 2021 10:21:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-exit-rule-on-failed-assembly-update/m-p/9998084#M119904</guid>
      <dc:creator>daniel.puchta</dc:creator>
      <dc:date>2021-01-13T10:21:00Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic exit rule on failed Assembly update</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-exit-rule-on-failed-assembly-update/m-p/9998449#M119918</link>
      <description>&lt;P&gt;Just a thought:&amp;nbsp; I wander if changing the following application options before starting, then setting them back at the end might help your performance out any with your large assembly:&lt;/P&gt;&lt;P&gt;- Application Options &amp;gt; Assembly tab &amp;gt; Defer update&lt;/P&gt;&lt;P&gt;- Application Options &amp;gt; Assembly tab &amp;gt; Enable relationship redundancy analysis&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this solved your problem, or answered your question, please click &lt;SPAN style="background-color: green; color: white;"&gt;&lt;STRONG&gt;ACCEPT SOLUTION&lt;/STRONG&gt;&lt;/SPAN&gt;.&lt;BR /&gt;Or, if this helped you, please click 'LIKE' &lt;SPAN&gt;&lt;img class="lia-deferred-image lia-image-emoji" src="https://forums.autodesk.com/html/@7401B55A0A518861312A0F851CD29320/emoticons/1f44d.png" alt=":thumbs_up:" title=":thumbs_up:" /&gt;&lt;/SPAN&gt;.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jan 2021 13:32:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-exit-rule-on-failed-assembly-update/m-p/9998449#M119918</guid>
      <dc:creator>WCrihfield</dc:creator>
      <dc:date>2021-01-13T13:32:42Z</dc:date>
    </item>
  </channel>
</rss>

