<?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: Factory: Filtering parameteres (Asset properties) in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/factory-filtering-parameteres-asset-properties/m-p/9029369#M101328</link>
    <description>&lt;P&gt;Instead of a pop up, could the value be added to an "empty" parameter.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let's say I created an empty parameter called "Size", and if i select Single, the sizes Ø100 and Ø400 gets added to the Size parameter (multi value) for me to choose from, and&amp;nbsp;if I&amp;nbsp;select Double, the sizes Ø200 and Ø300 are added and Ø100 and Ø400 removed&lt;/P&gt;</description>
    <pubDate>Tue, 17 Sep 2019 09:28:23 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-09-17T09:28:23Z</dc:date>
    <item>
      <title>Factory: Filtering parameteres (Asset properties)</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/factory-filtering-parameteres-asset-properties/m-p/9026603#M101290</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it possible to block options under asset properties? Sort of like a filtering option&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;Example:&lt;/U&gt;&lt;/P&gt;&lt;P&gt;If I have two key parameters&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1)&amp;nbsp;Wheel&lt;/STRONG&gt; (Options:&amp;nbsp;Single and Double)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2) WheelDiameter&lt;/STRONG&gt; (Options: Ø100, Ø200, Ø300, Ø400)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I select&amp;nbsp;Single (Wheel), only Ø100 and Ø400 are selectable. And when I select&amp;nbsp;Double I can only choose between Ø200 and Ø300&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It's to diasble a user from selecting a Single wheel with a Ø200 diameter etc.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Sep 2019 08:14:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/factory-filtering-parameteres-asset-properties/m-p/9026603#M101290</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-09-16T08:14:16Z</dc:date>
    </item>
    <item>
      <title>Re: Factory: Filtering parameteres (Asset properties)</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/factory-filtering-parameteres-asset-properties/m-p/9026724#M101293</link>
      <description>&lt;P&gt;Hi, it is not necessary that you have two parameters, you can have only one, and then with an ilogic load values according to this parameter. In the example of ilogic that I share I create a list with the values you mention.&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oValueList&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;New&lt;/SPAN&gt; &lt;SPAN&gt;ArrayList&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oValue&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;String&lt;/SPAN&gt;

&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;Wheel&lt;/SPAN&gt; = &lt;SPAN&gt;"Single"&lt;/SPAN&gt; &lt;SPAN&gt;Then&lt;/SPAN&gt;
	&lt;SPAN&gt;oValueList&lt;/SPAN&gt;.&lt;SPAN&gt;Add&lt;/SPAN&gt;(&lt;SPAN&gt;"Ø100"&lt;/SPAN&gt;)
	&lt;SPAN&gt;oValueList&lt;/SPAN&gt;.&lt;SPAN&gt;Add&lt;/SPAN&gt;(&lt;SPAN&gt;"Ø400"&lt;/SPAN&gt;)
	&lt;SPAN&gt;oValue&lt;/SPAN&gt; = &lt;SPAN&gt;InputListBox&lt;/SPAN&gt;(&lt;SPAN&gt;"select the appropriate diameter"&lt;/SPAN&gt;, &lt;SPAN&gt;oValueList&lt;/SPAN&gt;, &lt;SPAN&gt;"Ø100"&lt;/SPAN&gt;, &lt;SPAN&gt;"Ilogic"&lt;/SPAN&gt;, &lt;SPAN&gt;"Available Selections"&lt;/SPAN&gt;)
&lt;SPAN&gt;Else&lt;/SPAN&gt;
	&lt;SPAN&gt;oValueList&lt;/SPAN&gt;.&lt;SPAN&gt;Add&lt;/SPAN&gt;(&lt;SPAN&gt;"Ø100"&lt;/SPAN&gt;)
	&lt;SPAN&gt;oValueList&lt;/SPAN&gt;.&lt;SPAN&gt;Add&lt;/SPAN&gt;(&lt;SPAN&gt;"Ø200"&lt;/SPAN&gt;)
	&lt;SPAN&gt;oValueList&lt;/SPAN&gt;.&lt;SPAN&gt;Add&lt;/SPAN&gt;(&lt;SPAN&gt;"Ø300"&lt;/SPAN&gt;)
	&lt;SPAN&gt;oValueList&lt;/SPAN&gt;.&lt;SPAN&gt;Add&lt;/SPAN&gt;(&lt;SPAN&gt;"Ø400"&lt;/SPAN&gt;)
	&lt;SPAN&gt;oValue&lt;/SPAN&gt; = &lt;SPAN&gt;InputListBox&lt;/SPAN&gt;(&lt;SPAN&gt;"select the appropriate diameter"&lt;/SPAN&gt;, &lt;SPAN&gt;oValueList&lt;/SPAN&gt;, &lt;SPAN&gt;"Ø100"&lt;/SPAN&gt;, &lt;SPAN&gt;"Ilogic"&lt;/SPAN&gt;, &lt;SPAN&gt;"Available Selections"&lt;/SPAN&gt;)
&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;Maybe some similar approach can be useful, regards&lt;/P&gt;</description>
      <pubDate>Mon, 16 Sep 2019 09:33:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/factory-filtering-parameteres-asset-properties/m-p/9026724#M101293</guid>
      <dc:creator>Sergio.D.Suárez</dc:creator>
      <dc:date>2019-09-16T09:33:19Z</dc:date>
    </item>
    <item>
      <title>Re: Factory: Filtering parameteres (Asset properties)</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/factory-filtering-parameteres-asset-properties/m-p/9029369#M101328</link>
      <description>&lt;P&gt;Instead of a pop up, could the value be added to an "empty" parameter.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let's say I created an empty parameter called "Size", and if i select Single, the sizes Ø100 and Ø400 gets added to the Size parameter (multi value) for me to choose from, and&amp;nbsp;if I&amp;nbsp;select Double, the sizes Ø200 and Ø300 are added and Ø100 and Ø400 removed&lt;/P&gt;</description>
      <pubDate>Tue, 17 Sep 2019 09:28:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/factory-filtering-parameteres-asset-properties/m-p/9029369#M101328</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-09-17T09:28:23Z</dc:date>
    </item>
  </channel>
</rss>

