<?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 iLogic form in Inventor Programming Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-form/m-p/4885974#M125640</link>
    <description>&lt;P&gt;Does anyone knows if it is possible to add the selectionbox for the sheetmetal rule on an ilogic Form ?&lt;/P&gt;&lt;P&gt;Or if not possible, maybe some kinda workaround?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;Joris&lt;/P&gt;</description>
    <pubDate>Fri, 14 Mar 2014 10:03:50 GMT</pubDate>
    <dc:creator>JorisSteurs1246</dc:creator>
    <dc:date>2014-03-14T10:03:50Z</dc:date>
    <item>
      <title>iLogic form</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-form/m-p/4885974#M125640</link>
      <description>&lt;P&gt;Does anyone knows if it is possible to add the selectionbox for the sheetmetal rule on an ilogic Form ?&lt;/P&gt;&lt;P&gt;Or if not possible, maybe some kinda workaround?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;Joris&lt;/P&gt;</description>
      <pubDate>Fri, 14 Mar 2014 10:03:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-form/m-p/4885974#M125640</guid>
      <dc:creator>JorisSteurs1246</dc:creator>
      <dc:date>2014-03-14T10:03:50Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic form</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-form/m-p/4887136#M125641</link>
      <description>&lt;P&gt;Maybe tabs, i do have my rules dwg ipt and iam rules on different tabs. Working great. Just my 2 cents&lt;/P&gt;</description>
      <pubDate>Fri, 14 Mar 2014 17:19:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-form/m-p/4887136#M125641</guid>
      <dc:creator>GosponZ</dc:creator>
      <dc:date>2014-03-14T17:19:47Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic form</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-form/m-p/4887284#M125642</link>
      <description>&lt;P&gt;If the file is a Sheet Metal file this will fill a Text parameter with the sheetmetal styles. That parameter can then be added to a an iLogic form.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Dim smStyleList As New ArrayList

For Each smStyle As SheetMetalStyle In ThisDoc.Document.ComponentDefinition.SheetMetalStyles
	smStyleList.Add(smStyle.Name)
Next smStyle

MultiValue.List("paramName") = smStyleList&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Mar 2014 18:00:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-form/m-p/4887284#M125642</guid>
      <dc:creator>rjay75</dc:creator>
      <dc:date>2014-03-14T18:00:23Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic form</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-form/m-p/4887740#M125643</link>
      <description>&lt;P&gt;Thanks Rjay for this snippet, it works, and I have a slectable list &amp;nbsp;on my form. Unfortunatly it goes only one way, the part doesn't change when selecting a new SheetStyle. That was actualy my aim. Maybe should have put my question a bit more precise :-).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Mar 2014 21:12:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-form/m-p/4887740#M125643</guid>
      <dc:creator>JorisSteurs1246</dc:creator>
      <dc:date>2014-03-14T21:12:07Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic form</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-form/m-p/4887828#M125644</link>
      <description>&lt;P&gt;To go the other way create another rule with this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;SheetMetal.SetActiveStyle(paramName)&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;When the parameter is update it should set the style.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Mar 2014 21:56:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-form/m-p/4887828#M125644</guid>
      <dc:creator>rjay75</dc:creator>
      <dc:date>2014-03-14T21:56:41Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic form</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-form/m-p/4888388#M125645</link>
      <description>Sorry to say but that last line didn't do the update.&lt;BR /&gt;This is what the total iLogic looks like right now.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Dim smStyleList As New ArrayList&lt;BR /&gt;For Each smStyle As SheetMetalStyle In&lt;BR /&gt;ThisDoc.Document.ComponentDefinition.SheetMetalStyles&lt;BR /&gt;smStyleList.Add(smStyle.Name)Next smStyle&lt;BR /&gt;MultiValue.List("SheetMetalType") = smStyleList&lt;BR /&gt;SheetMetal.SetActiveStyle(SheetMetalType)</description>
      <pubDate>Sat, 15 Mar 2014 14:13:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-form/m-p/4888388#M125645</guid>
      <dc:creator>JorisSteurs1246</dc:creator>
      <dc:date>2014-03-15T14:13:00Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic form</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-form/m-p/4888638#M125646</link>
      <description>The last line has to be in a separate rule.</description>
      <pubDate>Sat, 15 Mar 2014 19:24:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-form/m-p/4888638#M125646</guid>
      <dc:creator>rjay75</dc:creator>
      <dc:date>2014-03-15T19:24:20Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic form</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-form/m-p/4888710#M125647</link>
      <description>Tried this also, even added a document update rule, but the model keep his&lt;BR /&gt;thickness stubborn as it is.</description>
      <pubDate>Sat, 15 Mar 2014 20:54:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-form/m-p/4888710#M125647</guid>
      <dc:creator>JorisSteurs1246</dc:creator>
      <dc:date>2014-03-15T20:54:00Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic form</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-form/m-p/4888838#M125648</link>
      <description>&lt;P&gt;Hmm. I have gotten to work with two rules. The first rule looks like this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Dim smStyleList As New ArrayList

For Each smStyle As SheetMetalStyle In ThisDoc.Document.ComponentDefinition.SheetMetalStyles
    smStyleList.Add(smStyle.Name)
Next smStyle

MultiValue.List("SheetMetalType") = smStyleList&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The second rule looks like this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;SheetMetal.SetActiveStyle(SheetMetalType)&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Each of these are regular rules.&lt;/P&gt;&lt;P&gt;I tested this on Inventor 2014. What version of Inventor are you running?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;One thing to note is in the document I tested this it initially appeared not to work but it was because in the sheet metal defaults I didn't have Use Thickness From Rule checked,&lt;/P&gt;</description>
      <pubDate>Sun, 16 Mar 2014 02:54:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-form/m-p/4888838#M125648</guid>
      <dc:creator>rjay75</dc:creator>
      <dc:date>2014-03-16T02:54:52Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic form</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-form/m-p/4888924#M125649</link>
      <description>Yes AI 2014 latest service pack.&lt;BR /&gt;&lt;BR /&gt;Aaaand I got it working now. The problem was that I used external rules,&lt;BR /&gt;just a habit of mine to avoid making new templates all the time.&lt;BR /&gt;Strange though.... If I made it a normal rule it works fine , I'm going to&lt;BR /&gt;save both rules in the file and try if it still works when I trigger the&lt;BR /&gt;second rule on parameter change.&lt;BR /&gt;&lt;BR /&gt;Anyhow already big thanks &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;</description>
      <pubDate>Sun, 16 Mar 2014 09:22:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-form/m-p/4888924#M125649</guid>
      <dc:creator>JorisSteurs1246</dc:creator>
      <dc:date>2014-03-16T09:22:00Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic form</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-form/m-p/5347777#M125650</link>
      <description>&lt;P&gt;Hi all&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to know if any of you had the experience of an smart form, for example consider a form&amp;nbsp;with woth some parametes, as you can see in the attached picture, my first field, is a drop down menue showing the location of a nozzle, which might be located on top, shell or bottom of a tank, I want to be able to gray out some fields when I choose for example top situation, so, the grayed fields are not accessible and the user cannot write anything in those fields.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 20 Oct 2014 10:58:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-form/m-p/5347777#M125650</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-10-20T10:58:20Z</dc:date>
    </item>
  </channel>
</rss>

