<?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: Using material option in form. in Inventor Programming Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-forum/using-material-option-in-form/m-p/10328565#M69409</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4253164"&gt;@Sergio.D.Suárez&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for this code. It did work for me, but I made a small change and predefined the Material library that needs to be selected. But one issue I found was that the material list that is displayed is not sorted whatsoever and materials is all over the place. Any ideas on how to solve it to be sorted alphabetically?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 21 May 2021 07:05:36 GMT</pubDate>
    <dc:creator>Pieter_vBiljon</dc:creator>
    <dc:date>2021-05-21T07:05:36Z</dc:date>
    <item>
      <title>Using material option in form.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/using-material-option-in-form/m-p/9156627#M69407</link>
      <description>&lt;P&gt;Good day,&lt;/P&gt;&lt;P&gt;I am busy with fine tuning our templates for parts, assemblies and drawings created in Inventor.&amp;nbsp; One of the things on my list is to simplify (also read "enforce") the correct entry of specific information at part, assembly and drawing level.&amp;nbsp; So one of the main issues I have is that when one brings in contractors for limited term work, their understanding of our company processes are not quite where it should be to ensure a smooth flowing process from 3D modelling through to producing drawings.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So the idea is to use an event linked iLogic Form to ensure that they are reminded about very specific information / meta data / properties that needs to be entered during this time in the process.&amp;nbsp; I have been able to get just about everything to work, except to show the material selection in my Form.&amp;nbsp; It is not shown under the iProperties or parameters options when one creates the Form so I cannot just simply drag the option across.&amp;nbsp; I Googled the issue but the one possible solution I found also does not do the trick.&amp;nbsp; Basically I want to replicate the drop down selection to specify the material, but just in the Form environment.&amp;nbsp; Below is a screen capture of the Form as I have it currently (work in progress), the material listing should be where the Material heading is.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen capture of current Form" style="width: 474px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/699688i3C255E9EBC80211F/image-size/large?v=v2&amp;amp;px=999" role="button" title="IV Form Screen Capture.JPG" alt="Screen capture of current Form" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Screen capture of current Form&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyone that can assist with this please?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kobus&lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2019 08:11:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/using-material-option-in-form/m-p/9156627#M69407</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-11-20T08:11:22Z</dc:date>
    </item>
    <item>
      <title>Re: Using material option in form.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/using-material-option-in-form/m-p/9156996#M69408</link>
      <description>&lt;P&gt;Hi, I'll give you some examples in ilogic that maybe they could serve you.&lt;BR /&gt;If you only want to read your active material on your form you could use the following code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oDoc&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;PartDocument&lt;/SPAN&gt; = &lt;SPAN&gt;ThisDoc&lt;/SPAN&gt;.&lt;SPAN&gt;Document&lt;/SPAN&gt;
&lt;SPAN&gt;MessageBox&lt;/SPAN&gt;.&lt;SPAN&gt;Show&lt;/SPAN&gt;(&lt;SPAN&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN&gt;ActiveMaterial&lt;/SPAN&gt;.&lt;SPAN&gt;DisplayName&lt;/SPAN&gt;)&lt;/PRE&gt;&lt;P&gt;If you want to change material, I think a good approach would be to previously select the library, and then select the material as in the following code&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oDoc&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;PartDocument&lt;/SPAN&gt; = &lt;SPAN&gt;ThisDoc&lt;/SPAN&gt;.&lt;SPAN&gt;Document&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oAL_List&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;lib_List&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;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;oAL&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;AssetLibrary&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;AssetLibraries&lt;/SPAN&gt;
	&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;InStr&lt;/SPAN&gt;(&lt;SPAN&gt;oAL&lt;/SPAN&gt;.&lt;SPAN&gt;DisplayName&lt;/SPAN&gt; , &lt;SPAN&gt;"Material"&lt;/SPAN&gt;) &amp;lt;&amp;gt; 0 &lt;SPAN&gt;Then&lt;/SPAN&gt;  
		&lt;SPAN&gt;oAL_List&lt;/SPAN&gt;.&lt;SPAN&gt;Add&lt;/SPAN&gt;(&lt;SPAN&gt;oAL&lt;/SPAN&gt;.&lt;SPAN&gt;DisplayName&lt;/SPAN&gt;)
	&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;
&lt;SPAN&gt;Next&lt;/SPAN&gt;

&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oALSelect&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;String&lt;/SPAN&gt; = &lt;SPAN&gt;InputListBox&lt;/SPAN&gt;(&lt;SPAN&gt;"Select Asset Library"&lt;/SPAN&gt;, &lt;SPAN&gt;oAL_List&lt;/SPAN&gt;, &lt;SPAN&gt;oAL_List&lt;/SPAN&gt;(0), &lt;SPAN&gt;"Change Part Material"&lt;/SPAN&gt;, &lt;SPAN&gt;"Available Selections"&lt;/SPAN&gt;)
&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;oALSelect&lt;/SPAN&gt; &lt;SPAN&gt;Is&lt;/SPAN&gt; &lt;SPAN&gt;Nothing&lt;/SPAN&gt; &lt;SPAN&gt;Then&lt;/SPAN&gt; &lt;SPAN&gt;Exit&lt;/SPAN&gt; &lt;SPAN&gt;Sub&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oLib&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;AssetLibrary&lt;/SPAN&gt; =&lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;AssetLibraries&lt;/SPAN&gt;(&lt;SPAN&gt;oALSelect&lt;/SPAN&gt;)

&lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;libAsset&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;oLib&lt;/SPAN&gt;.&lt;SPAN&gt;MaterialAssets&lt;/SPAN&gt;
	&lt;SPAN&gt;lib_List&lt;/SPAN&gt;.&lt;SPAN&gt;Add&lt;/SPAN&gt;(&lt;SPAN&gt;libAsset&lt;/SPAN&gt;.&lt;SPAN&gt;DisplayName&lt;/SPAN&gt;)
&lt;SPAN&gt;Next&lt;/SPAN&gt;

&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oLibAssetSel&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;String&lt;/SPAN&gt; = &lt;SPAN&gt;InputListBox&lt;/SPAN&gt;(&lt;SPAN&gt;"Select Material"&lt;/SPAN&gt;, &lt;SPAN&gt;lib_List&lt;/SPAN&gt;, &lt;SPAN&gt;lib_List&lt;/SPAN&gt;(0), &lt;SPAN&gt;"Change Part Material"&lt;/SPAN&gt;, &lt;SPAN&gt;"Available Selections"&lt;/SPAN&gt;)
&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;oLibAssetSel&lt;/SPAN&gt; &lt;SPAN&gt;Is&lt;/SPAN&gt; &lt;SPAN&gt;Nothing&lt;/SPAN&gt; &lt;SPAN&gt;Then&lt;/SPAN&gt; &lt;SPAN&gt;Exit&lt;/SPAN&gt; &lt;SPAN&gt;Sub&lt;/SPAN&gt;

&lt;SPAN&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN&gt;ActiveMaterial&lt;/SPAN&gt; = &lt;SPAN&gt;oLib&lt;/SPAN&gt;.&lt;SPAN&gt;MaterialAssets&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(&lt;SPAN&gt;oLibAssetSel&lt;/SPAN&gt;)

&lt;SPAN&gt;iLogicVb&lt;/SPAN&gt;.&lt;SPAN&gt;UpdateWhenDone&lt;/SPAN&gt; = &lt;SPAN&gt;True&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;I hope this helps with your form, regards&lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2019 10:59:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/using-material-option-in-form/m-p/9156996#M69408</guid>
      <dc:creator>Sergio.D.Suárez</dc:creator>
      <dc:date>2019-11-20T10:59:26Z</dc:date>
    </item>
    <item>
      <title>Re: Using material option in form.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/using-material-option-in-form/m-p/10328565#M69409</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4253164"&gt;@Sergio.D.Suárez&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for this code. It did work for me, but I made a small change and predefined the Material library that needs to be selected. But one issue I found was that the material list that is displayed is not sorted whatsoever and materials is all over the place. Any ideas on how to solve it to be sorted alphabetically?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 21 May 2021 07:05:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/using-material-option-in-form/m-p/10328565#M69409</guid>
      <dc:creator>Pieter_vBiljon</dc:creator>
      <dc:date>2021-05-21T07:05:36Z</dc:date>
    </item>
    <item>
      <title>Re: Using material option in form.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/using-material-option-in-form/m-p/10537775#M69410</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/10450890"&gt;@Pieter_vBiljon&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You likely have your answer by now, but for the benefit of others I offer this solution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Use the &lt;STRONG&gt;Sort&lt;/STRONG&gt; method&amp;nbsp; on the list object after the list of materials has been created.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;For Each libAsset In oLib.MaterialAssets
	lib_List.Add(libAsset.DisplayName)
Next

lib_List.Sort&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this is helpful.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jerry&lt;/P&gt;</description>
      <pubDate>Wed, 11 Aug 2021 16:13:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/using-material-option-in-form/m-p/10537775#M69410</guid>
      <dc:creator>JBerns</dc:creator>
      <dc:date>2021-08-11T16:13:37Z</dc:date>
    </item>
    <item>
      <title>Re: Using material option in form.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/using-material-option-in-form/m-p/10538329#M69411</link>
      <description>Thank you @Anonymous.</description>
      <pubDate>Wed, 11 Aug 2021 19:39:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/using-material-option-in-form/m-p/10538329#M69411</guid>
      <dc:creator>Pieter_vBiljon</dc:creator>
      <dc:date>2021-08-11T19:39:26Z</dc:date>
    </item>
    <item>
      <title>Re: Using material option in form.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/using-material-option-in-form/m-p/10538558#M69412</link>
      <description>&lt;P&gt;Welcome,&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/10450890"&gt;@Pieter_vBiljon&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Aug 2021 21:16:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/using-material-option-in-form/m-p/10538558#M69412</guid>
      <dc:creator>JBerns</dc:creator>
      <dc:date>2021-08-11T21:16:10Z</dc:date>
    </item>
    <item>
      <title>Re: Using material option in form.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/using-material-option-in-form/m-p/10539001#M69413</link>
      <description>&lt;P&gt;Rule is working perfect but i can't see my custom Library. It is just this two. Some help please. Thanks&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="GosponZ_0-1628733383229.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/951703iF299B5342A0F757A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="GosponZ_0-1628733383229.png" alt="GosponZ_0-1628733383229.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Aug 2021 01:56:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/using-material-option-in-form/m-p/10539001#M69413</guid>
      <dc:creator>GosponZ</dc:creator>
      <dc:date>2021-08-12T01:56:47Z</dc:date>
    </item>
    <item>
      <title>Re: Using material option in form.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/using-material-option-in-form/m-p/10540202#M69414</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1097622"&gt;@GosponZ&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;When in a part or assembly, what libraries are available from the Material menu?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="2021-08-12_7-24-36.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/951947i3EB8027B43AE501D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="2021-08-12_7-24-36.png" alt="2021-08-12_7-24-36.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is your library available in the current project?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2021-08-12_7-29-39.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/951944i213D939A1DC211B4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="2021-08-12_7-29-39.png" alt="2021-08-12_7-29-39.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Beyond those two factors, I am not sure why your custom library would not be listed.&lt;/P&gt;&lt;P&gt;Perhaps others may have an idea.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jerry&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Aug 2021 12:34:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/using-material-option-in-form/m-p/10540202#M69414</guid>
      <dc:creator>JBerns</dc:creator>
      <dc:date>2021-08-12T12:34:44Z</dc:date>
    </item>
    <item>
      <title>Re: Using material option in form.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/using-material-option-in-form/m-p/10540839#M69415</link>
      <description>&lt;P&gt;i do see my Library but not when running rule as i placed screen shot. Al material i 'm taking from My Library&lt;/P&gt;</description>
      <pubDate>Thu, 12 Aug 2021 16:08:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/using-material-option-in-form/m-p/10540839#M69415</guid>
      <dc:creator>GosponZ</dc:creator>
      <dc:date>2021-08-12T16:08:27Z</dc:date>
    </item>
    <item>
      <title>Re: Using material option in form.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/using-material-option-in-form/m-p/10540944#M69416</link>
      <description>&lt;P&gt;Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1097622"&gt;@GosponZ&lt;/a&gt;.&amp;nbsp; In the code that &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4253164"&gt;@Sergio.D.Suárez&lt;/a&gt; posted, he is filtering library names and only getting ones with "Material" in the name.&amp;nbsp; You may have to change that line of code to include any that don't contain that exact text in the name.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Aug 2021 16:51:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/using-material-option-in-form/m-p/10540944#M69416</guid>
      <dc:creator>WCrihfield</dc:creator>
      <dc:date>2021-08-12T16:51:22Z</dc:date>
    </item>
    <item>
      <title>Re: Using material option in form.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/using-material-option-in-form/m-p/10541486#M69417</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7812054"&gt;@WCrihfield&lt;/a&gt;&amp;nbsp;, for pointing that out. I overlooked that.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Aug 2021 20:46:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/using-material-option-in-form/m-p/10541486#M69417</guid>
      <dc:creator>JBerns</dc:creator>
      <dc:date>2021-08-12T20:46:12Z</dc:date>
    </item>
    <item>
      <title>Re: Using material option in form.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/using-material-option-in-form/m-p/10541796#M69418</link>
      <description>&lt;P&gt;Indeed that was so simple. Thank you&lt;/P&gt;</description>
      <pubDate>Thu, 12 Aug 2021 23:55:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/using-material-option-in-form/m-p/10541796#M69418</guid>
      <dc:creator>GosponZ</dc:creator>
      <dc:date>2021-08-12T23:55:42Z</dc:date>
    </item>
  </channel>
</rss>

