<?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 Disabling input cells in iLogic Forms in Inventor Programming Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-forum/disabling-input-cells-in-ilogic-forms/m-p/12381583#M16577</link>
    <description>&lt;P&gt;I'm new to Autodesk Inventor and totally into exploring iLogic. It's a step up from what I've used before, and I'm excited about it. Right now, I'm working on this frame assembly using iLogic forms and rules. My goal is to create a form where I can enter the frame width, height, pick the number of vertical and horizontal members, and set their distances, just like in the picture.&lt;/P&gt;&lt;P&gt;But, I'm stuck on a couple of things:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;I want those distance input cells to play nice and enable/disable based on the number of members I choose. Is that a thing? I saw something called "enabling parameter name" in form properties, but I'm not quite getting it.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;These frames use 'C channels.' Is it possible to add an option in the iLogic rule to flip the 'C profile' direction when needed?&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Krish.&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="Screenshot 2023-11-16 174114.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1293795i5C1054B7637DB6B5/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2023-11-16 174114.png" alt="Screenshot 2023-11-16 174114.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 16 Nov 2023 13:56:03 GMT</pubDate>
    <dc:creator>krishnaprasad.veedu</dc:creator>
    <dc:date>2023-11-16T13:56:03Z</dc:date>
    <item>
      <title>Disabling input cells in iLogic Forms</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/disabling-input-cells-in-ilogic-forms/m-p/12381583#M16577</link>
      <description>&lt;P&gt;I'm new to Autodesk Inventor and totally into exploring iLogic. It's a step up from what I've used before, and I'm excited about it. Right now, I'm working on this frame assembly using iLogic forms and rules. My goal is to create a form where I can enter the frame width, height, pick the number of vertical and horizontal members, and set their distances, just like in the picture.&lt;/P&gt;&lt;P&gt;But, I'm stuck on a couple of things:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;I want those distance input cells to play nice and enable/disable based on the number of members I choose. Is that a thing? I saw something called "enabling parameter name" in form properties, but I'm not quite getting it.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;These frames use 'C channels.' Is it possible to add an option in the iLogic rule to flip the 'C profile' direction when needed?&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Krish.&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="Screenshot 2023-11-16 174114.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1293795i5C1054B7637DB6B5/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2023-11-16 174114.png" alt="Screenshot 2023-11-16 174114.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Nov 2023 13:56:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/disabling-input-cells-in-ilogic-forms/m-p/12381583#M16577</guid>
      <dc:creator>krishnaprasad.veedu</dc:creator>
      <dc:date>2023-11-16T13:56:03Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling input cells in iLogic Forms</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/disabling-input-cells-in-ilogic-forms/m-p/12382008#M16578</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/13138943"&gt;@krishnaprasad.veedu&lt;/a&gt;.&amp;nbsp; To work with that 'Enabling Parameter Name' property of an entry in an iLogic Form, you will need to have / create a Boolean (Yes/No) type UserParameter just for that purpose, then make sure its value gets changed according to the situation.&amp;nbsp; Also, if you include a True/False (or checkbox) type control in your form for a Boolean type parameter, and want to use that to control something else in that same form (through its Enabling Parameter Name' property), then you will may need to update the document after changing its value before it will enable/disable that other control.&amp;nbsp; You can use additional internal iLogic rules, if needed, to help control the added Boolean parameters when certain other parameter values change.&lt;/P&gt;
&lt;P&gt;Not sure about reversing a C-Channel profile though.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Nov 2023 16:24:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/disabling-input-cells-in-ilogic-forms/m-p/12382008#M16578</guid>
      <dc:creator>WCrihfield</dc:creator>
      <dc:date>2023-11-16T16:24:45Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling input cells in iLogic Forms</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/disabling-input-cells-in-ilogic-forms/m-p/12383286#M16579</link>
      <description>&lt;P&gt;Hi, thanks for that. Figured out how to get that done.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Nov 2023 06:06:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/disabling-input-cells-in-ilogic-forms/m-p/12383286#M16579</guid>
      <dc:creator>krishnaprasad.veedu</dc:creator>
      <dc:date>2023-11-17T06:06:58Z</dc:date>
    </item>
  </channel>
</rss>

