<?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: Hide the control box on the form with iLogic in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/hide-the-control-box-on-the-form-with-ilogic/m-p/10222544#M123122</link>
    <description>&lt;P&gt;Here are two links to Microsoft's top two pages on the subject matter.&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.microsoft.com/en-us/dotnet/api/system.windows.forms?view=net-5.0" target="_blank" rel="noopener"&gt;System.Windows.Forms Namespace&lt;/A&gt; (lots of things you can use/create within Forms)&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.microsoft.com/en-us/dotnet/api/system.windows.forms.form?view=net-5.0" target="_blank" rel="noopener"&gt;Form Class&lt;/A&gt; (about the Form object itself and the Properties, Methods, and Events defined within it)&lt;/P&gt;&lt;P&gt;There is a TON of information (and links to related information) within those two pages.&amp;nbsp; Remember to click the little drop-down list, near the top right of the webpage, and change C# to VB, to change examples and related content to VB.NET versions (iLogic uses VB.NET).&lt;/P&gt;&lt;P&gt;Other than that, I would recommend that you open an internet browser search page, and type in "vb.net Windows Form" (or similar queries), to find tons more useful information, examples, forum posts, and Q&amp;amp;A sites on the subject.&lt;/P&gt;</description>
    <pubDate>Thu, 08 Apr 2021 16:39:34 GMT</pubDate>
    <dc:creator>WCrihfield</dc:creator>
    <dc:date>2021-04-08T16:39:34Z</dc:date>
    <item>
      <title>Hide the control box on the form with iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/hide-the-control-box-on-the-form-with-ilogic/m-p/10215604#M123046</link>
      <description>&lt;P&gt;Hello, community,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to make a list box visibility dynamic, which is controlled by the selection of the previously selected fields. I can grey out the list box by using a boolean parameter. But I want to remove the visibility of the list box entirely. How can I accomplish such a task with iLogic?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="shrey9GP3F_0-1617719138048.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/902837i6AC4A8C29186D92C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="shrey9GP3F_0-1617719138048.png" alt="shrey9GP3F_0-1617719138048.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;enable_subcategory = False

Select Case Cabinet_type

Case "Corner base"
		enable_subcategory = True
		MultiValue.SetList("Cabinet_Subcategory", "none", "Sink base")
		
		Select Case Cabinet_Subcategory
		Case "none"
			MultiValue.SetList("unit_width", "33 in", "36 in")
		End Select
End Select&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 06 Apr 2021 14:28:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/hide-the-control-box-on-the-form-with-ilogic/m-p/10215604#M123046</guid>
      <dc:creator>shrey9GP3F</dc:creator>
      <dc:date>2021-04-06T14:28:01Z</dc:date>
    </item>
    <item>
      <title>Re: Hide the control box on the form with iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/hide-the-control-box-on-the-form-with-ilogic/m-p/10217487#M123052</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/9915864"&gt;@shrey9GP3F&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I suspect this won't be possible to do.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Apr 2021 04:21:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/hide-the-control-box-on-the-form-with-ilogic/m-p/10217487#M123052</guid>
      <dc:creator>bhavik4244</dc:creator>
      <dc:date>2021-04-07T04:21:01Z</dc:date>
    </item>
    <item>
      <title>Re: Hide the control box on the form with iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/hide-the-control-box-on-the-form-with-ilogic/m-p/10219434#M123073</link>
      <description>&lt;P&gt;Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/9915864"&gt;@shrey9GP3F&lt;/a&gt;.&amp;nbsp; That won't be possible using an iLogic Form and iLogic rule(s).&lt;/P&gt;&lt;P&gt;You might accomplish something like that with a VBA UserForm when created within the VBA Editor, but it will be quite a bit more complicated than the iLogic Form route.&amp;nbsp; It has a visual design set of tools to work with, but requires a special 'form module' to accompany it (where you specify the specifics of its design and contents), besides the regular module for the regular part of the code.&lt;/P&gt;&lt;P&gt;Another thing you could try, if the form's design is fairly simple, is create your own Windows Form within the same rule that you want to interact with its outcome.&amp;nbsp; It's also quite a bit more complicated than the iLogic Form route, but it might result in the behavior you are seeking.&lt;/P&gt;&lt;P&gt;&lt;A href="https://knowledge.autodesk.com/community/article/328361" target="_blank" rel="noopener"&gt;Here is a link to one of my contribution posts&lt;/A&gt;, in which I show (with an example) how create, show, and react to, a Windows Form, all within one iLogic rule.&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 or KUDOS) &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;&lt;P&gt;If you want and have time, I would appreciate your Vote(s) for &lt;A href="https://forums.autodesk.com/t5/forums/recentpostspage/post-type/message/interaction-style/idea/user-id/7812054/" target="_blank" rel="noopener"&gt;My IDEAS &lt;SPAN&gt;&lt;img class="lia-deferred-image lia-image-emoji" src="https://forums.autodesk.com/html/@B166FEBB95D67CFA84899D32D8E17FC1/emoticons/1f4a1.png" alt=":light_bulb:" title=":light_bulb:" /&gt;&lt;/SPAN&gt;&lt;/A&gt;or you can Explore &lt;A href="https://knowledge.autodesk.com/profile/LTSUSR7HXMSAE/articles" target="_blank" rel="noopener"&gt;My CONTRIBUTIONS &lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Apr 2021 17:28:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/hide-the-control-box-on-the-form-with-ilogic/m-p/10219434#M123073</guid>
      <dc:creator>WCrihfield</dc:creator>
      <dc:date>2021-04-07T17:28:08Z</dc:date>
    </item>
    <item>
      <title>Re: Hide the control box on the form with iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/hide-the-control-box-on-the-form-with-ilogic/m-p/10219841#M123079</link>
      <description>&lt;P&gt;Thank you for the reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Where can I find the detailed documentation for creating and implementing the Windows form?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Apr 2021 20:01:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/hide-the-control-box-on-the-form-with-ilogic/m-p/10219841#M123079</guid>
      <dc:creator>shrey9GP3F</dc:creator>
      <dc:date>2021-04-07T20:01:52Z</dc:date>
    </item>
    <item>
      <title>Re: Hide the control box on the form with iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/hide-the-control-box-on-the-form-with-ilogic/m-p/10222544#M123122</link>
      <description>&lt;P&gt;Here are two links to Microsoft's top two pages on the subject matter.&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.microsoft.com/en-us/dotnet/api/system.windows.forms?view=net-5.0" target="_blank" rel="noopener"&gt;System.Windows.Forms Namespace&lt;/A&gt; (lots of things you can use/create within Forms)&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.microsoft.com/en-us/dotnet/api/system.windows.forms.form?view=net-5.0" target="_blank" rel="noopener"&gt;Form Class&lt;/A&gt; (about the Form object itself and the Properties, Methods, and Events defined within it)&lt;/P&gt;&lt;P&gt;There is a TON of information (and links to related information) within those two pages.&amp;nbsp; Remember to click the little drop-down list, near the top right of the webpage, and change C# to VB, to change examples and related content to VB.NET versions (iLogic uses VB.NET).&lt;/P&gt;&lt;P&gt;Other than that, I would recommend that you open an internet browser search page, and type in "vb.net Windows Form" (or similar queries), to find tons more useful information, examples, forum posts, and Q&amp;amp;A sites on the subject.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Apr 2021 16:39:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/hide-the-control-box-on-the-form-with-ilogic/m-p/10222544#M123122</guid>
      <dc:creator>WCrihfield</dc:creator>
      <dc:date>2021-04-08T16:39:34Z</dc:date>
    </item>
  </channel>
</rss>

