<?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: Manage active iLogic tab in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/manage-active-ilogic-tab/m-p/10752221#M131166</link>
    <description>The Inventor 2022.2 service pack fixes this annoyance!&lt;BR /&gt;&lt;BR /&gt;Thank you Autodesk for some love!</description>
    <pubDate>Thu, 11 Nov 2021 23:01:20 GMT</pubDate>
    <dc:creator>llorden4</dc:creator>
    <dc:date>2021-11-11T23:01:20Z</dc:date>
    <item>
      <title>Manage active iLogic tab</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/manage-active-ilogic-tab/m-p/10585115#M128277</link>
      <description>&lt;P&gt;I'm trying to locate the coding requirements to manage the current active tab on the iLogic toolbar.&amp;nbsp; Whenever I use a Named Geometry feature in my iLogic/API code, the Geometry tab automatically becomes active.&amp;nbsp; &amp;nbsp;Quite annoying while I'm trying to code and I have to keep remembering to switch back to the Rules tab.&amp;nbsp; &amp;nbsp;I'd like to set it to return to the Rules tab (even if just during my development) but can't seem to run down the coding on this one.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anybody got this figured?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="llorden4_0-1630340303213.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/958991i5761082C2F67AABC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="llorden4_0-1630340303213.png" alt="llorden4_0-1630340303213.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Aug 2021 16:18:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/manage-active-ilogic-tab/m-p/10585115#M128277</guid>
      <dc:creator>llorden4</dc:creator>
      <dc:date>2021-08-30T16:18:27Z</dc:date>
    </item>
    <item>
      <title>Re: Manage active iLogic tab</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/manage-active-ilogic-tab/m-p/10585158#M128278</link>
      <description>&lt;P&gt;That's a tough one, but I do know that the main iLogic tab is a DockableWindow, instead of a BrowserPane.&amp;nbsp; You might have to know some advanced vb.net to access deeper into it.&lt;/P&gt;
&lt;P&gt;Here's a little bit of iLogic to access it:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;Dim oTitle As String = "iLogic"
Dim oIntName As String = "ilogic.treeeditor"
Dim oClientID As String = "{3bdd8d79-2179-4b11-8a5a-257b1c0263ac}"
For Each oDW As Inventor.DockableWindow In ThisApplication.UserInterfaceManager.DockableWindows
	If oDW.InternalName = oIntName Then
		If Not oDW.Visible Then oDW.Visible = True
	End If
Next&lt;/LI-CODE&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;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Aug 2021 16:45:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/manage-active-ilogic-tab/m-p/10585158#M128278</guid>
      <dc:creator>WCrihfield</dc:creator>
      <dc:date>2021-08-30T16:45:15Z</dc:date>
    </item>
    <item>
      <title>Re: Manage active iLogic tab</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/manage-active-ilogic-tab/m-p/10588706#M128354</link>
      <description>&lt;P&gt;Thanks for the teaser, it is a bugger.&amp;nbsp; &amp;nbsp;I can dig down to the title tab "iLogic" but can't seem to get beyond that with my current skillset.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Looks like I'll have to wait for a miracle that the this forced tab change will stop magically in the future or someone smarter to come along and accept this challenge.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;MsgBox&lt;/SPAN&gt;(&lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;UserInterfaceManager&lt;/SPAN&gt;.&lt;SPAN&gt;DockableWindows&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(&lt;SPAN&gt;"ilogic.treeeditor"&lt;/SPAN&gt;).&lt;SPAN&gt;Title&lt;/SPAN&gt;)&lt;/PRE&gt;</description>
      <pubDate>Tue, 31 Aug 2021 21:56:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/manage-active-ilogic-tab/m-p/10588706#M128354</guid>
      <dc:creator>llorden4</dc:creator>
      <dc:date>2021-08-31T21:56:22Z</dc:date>
    </item>
    <item>
      <title>Re: Manage active iLogic tab</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/manage-active-ilogic-tab/m-p/10752221#M131166</link>
      <description>The Inventor 2022.2 service pack fixes this annoyance!&lt;BR /&gt;&lt;BR /&gt;Thank you Autodesk for some love!</description>
      <pubDate>Thu, 11 Nov 2021 23:01:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/manage-active-ilogic-tab/m-p/10752221#M131166</guid>
      <dc:creator>llorden4</dc:creator>
      <dc:date>2021-11-11T23:01:20Z</dc:date>
    </item>
  </channel>
</rss>

