<?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: Is there any way to make Ribbon Tab visible from Partial CUIX? in ObjectARX Forum</title>
    <link>https://forums.autodesk.com/t5/objectarx-forum/is-there-any-way-to-make-ribbon-tab-visible-from-partial-cuix/m-p/8707197#M5537</link>
    <description>&lt;P&gt;Hi Madhukar,&lt;/P&gt;
&lt;P&gt;Thanks for your reply.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am new to CUIX. I thought only CUIX load will add new Ribbon Tab to existing Workspaces.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Does it mean that Ribbon added in CUIX will need some type of coding to load new ribbon tab automatically?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Sachin&lt;/P&gt;</description>
    <pubDate>Thu, 04 Apr 2019 12:03:56 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-04-04T12:03:56Z</dc:date>
    <item>
      <title>Is there any way to make Ribbon Tab visible from Partial CUIX?</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/is-there-any-way-to-make-ribbon-tab-visible-from-partial-cuix/m-p/8701437#M5535</link>
      <description>&lt;P&gt;Hello All,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Unable to find existing post for my problem. So posting here.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am working on customer requirement, where I have to introduce new Ribbon tab in partial CUIX file.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have created a CUIX with Ribbon tab. When I shared that with customer, he is unable to see that automatically.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What do I need to do to make my Ribbon visible on CUIX load?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Sachin&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Apr 2019 14:07:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/is-there-any-way-to-make-ribbon-tab-visible-from-partial-cuix/m-p/8701437#M5535</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-04-02T14:07:05Z</dc:date>
    </item>
    <item>
      <title>Re: Is there any way to make Ribbon Tab visible from Partial CUIX?</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/is-there-any-way-to-make-ribbon-tab-visible-from-partial-cuix/m-p/8703357#M5536</link>
      <description>&lt;P&gt;CUIX is just a archive of&amp;nbsp; XML files, and AcCUI is .NET module that provides an API to manage CUIX.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I recommend creating a Lisp wrapper around C# functions and call them from command line or through ARX code what ever may seem fit for you.&lt;/P&gt;
&lt;P&gt;I have written a library that shows a way to general scenarios, this library is not an exhaustive list, I recommend you expand as per you need.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Anyway, coming back to question all you need is invoke this in AutoCAD , for example (CUIHIDERIBBONTAB "ID_TabHome")&lt;/P&gt;
&lt;P&gt;CUIHIDERIBBONTAB followed by tab id.&lt;/P&gt;
&lt;PRE style="color: #d1d1d1; background: #000000;"&gt;        &lt;SPAN style="color: #9999a9;"&gt;/// &amp;lt;summary&amp;gt;&lt;/SPAN&gt;
        &lt;SPAN style="color: #9999a9;"&gt;/// A Lisp wrapped to &amp;gt;NET function&lt;/SPAN&gt;
        &lt;SPAN style="color: #9999a9;"&gt;/// &amp;lt;/summary&amp;gt;&lt;/SPAN&gt;
        &lt;SPAN style="color: #9999a9;"&gt;/// &amp;lt;param name="ribbonElementId"&amp;gt; input ribbonElementId for.ex .\"ID_TabHome3D\" &amp;lt;/param&amp;gt;&lt;/SPAN&gt;
        &lt;SPAN style="color: #e66170; font-weight: bold;"&gt;public&lt;/SPAN&gt; &lt;SPAN style="color: #e66170; font-weight: bold;"&gt;void&lt;/SPAN&gt; CuiHideRibbonTab&lt;SPAN style="color: #d2cd86;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #e66170; font-weight: bold;"&gt;string&lt;/SPAN&gt; ribbonTabId&lt;SPAN style="color: #d2cd86;"&gt;)&lt;/SPAN&gt;
        &lt;SPAN style="color: #b060b0;"&gt;{&lt;/SPAN&gt;
            &lt;SPAN style="color: #e66170; font-weight: bold;"&gt;var&lt;/SPAN&gt; menuName &lt;SPAN style="color: #d2cd86;"&gt;=&lt;/SPAN&gt; Application&lt;SPAN style="color: #d2cd86;"&gt;.&lt;/SPAN&gt;GetSystemVariable&lt;SPAN style="color: #d2cd86;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #02d045;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #00c4c4;"&gt;MENUNAME&lt;/SPAN&gt;&lt;SPAN style="color: #02d045;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #d2cd86;"&gt;)&lt;/SPAN&gt; &lt;SPAN style="color: #e66170; font-weight: bold;"&gt;as&lt;/SPAN&gt; &lt;SPAN style="color: #e66170; font-weight: bold;"&gt;string&lt;/SPAN&gt;&lt;SPAN style="color: #b060b0;"&gt;;&lt;/SPAN&gt;
            &lt;SPAN style="color: #e66170; font-weight: bold;"&gt;var&lt;/SPAN&gt; curWorkspace &lt;SPAN style="color: #d2cd86;"&gt;=&lt;/SPAN&gt; Application&lt;SPAN style="color: #d2cd86;"&gt;.&lt;/SPAN&gt;GetSystemVariable&lt;SPAN style="color: #d2cd86;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #02d045;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #00c4c4;"&gt;WSCURRENT&lt;/SPAN&gt;&lt;SPAN style="color: #02d045;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #d2cd86;"&gt;)&lt;/SPAN&gt; &lt;SPAN style="color: #e66170; font-weight: bold;"&gt;as&lt;/SPAN&gt; &lt;SPAN style="color: #e66170; font-weight: bold;"&gt;string&lt;/SPAN&gt;&lt;SPAN style="color: #b060b0;"&gt;;&lt;/SPAN&gt;
            &lt;SPAN style="color: #e66170; font-weight: bold;"&gt;var&lt;/SPAN&gt; cs &lt;SPAN style="color: #d2cd86;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #e66170; font-weight: bold;"&gt;new&lt;/SPAN&gt; Autodesk&lt;SPAN style="color: #d2cd86;"&gt;.&lt;/SPAN&gt;AutoCAD&lt;SPAN style="color: #d2cd86;"&gt;.&lt;/SPAN&gt;Customization&lt;SPAN style="color: #d2cd86;"&gt;.&lt;/SPAN&gt;CustomizationSection&lt;SPAN style="color: #d2cd86;"&gt;(&lt;/SPAN&gt;menuName &lt;SPAN style="color: #d2cd86;"&gt;+&lt;/SPAN&gt; &lt;SPAN style="color: #02d045;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #00c4c4;"&gt;.cuix&lt;/SPAN&gt;&lt;SPAN style="color: #02d045;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #d2cd86;"&gt;)&lt;/SPAN&gt;&lt;SPAN style="color: #b060b0;"&gt;;&lt;/SPAN&gt;
            &lt;SPAN style="color: #e66170; font-weight: bold;"&gt;var&lt;/SPAN&gt; workSpace &lt;SPAN style="color: #d2cd86;"&gt;=&lt;/SPAN&gt; cs&lt;SPAN style="color: #d2cd86;"&gt;.&lt;/SPAN&gt;getWorkspace&lt;SPAN style="color: #d2cd86;"&gt;(&lt;/SPAN&gt;curWorkspace&lt;SPAN style="color: #d2cd86;"&gt;)&lt;/SPAN&gt; &lt;SPAN style="color: #e66170; font-weight: bold;"&gt;as&lt;/SPAN&gt; Workspace&lt;SPAN style="color: #b060b0;"&gt;;&lt;/SPAN&gt;
            
            &lt;SPAN style="color: #e66170; font-weight: bold;"&gt;foreach&lt;/SPAN&gt;&lt;SPAN style="color: #d2cd86;"&gt;(&lt;/SPAN&gt;WSRibbonTabSourceReference wsrTabSrcRef &lt;SPAN style="color: #e66170; font-weight: bold;"&gt;in&lt;/SPAN&gt; workSpace&lt;SPAN style="color: #d2cd86;"&gt;.&lt;/SPAN&gt;WorkspaceRibbonRoot&lt;SPAN style="color: #d2cd86;"&gt;.&lt;/SPAN&gt;WorkspaceTabs&lt;SPAN style="color: #d2cd86;"&gt;)&lt;/SPAN&gt;
            &lt;SPAN style="color: #b060b0;"&gt;{&lt;/SPAN&gt;
                &lt;SPAN style="color: #e66170; font-weight: bold;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="color: #d2cd86;"&gt;(&lt;/SPAN&gt;wsrTabSrcRef&lt;SPAN style="color: #d2cd86;"&gt;.&lt;/SPAN&gt;TabId &lt;SPAN style="color: #d2cd86;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #d2cd86;"&gt;=&lt;/SPAN&gt; ribbonTabId&lt;SPAN style="color: #d2cd86;"&gt;)&lt;/SPAN&gt;
                &lt;SPAN style="color: #b060b0;"&gt;{&lt;/SPAN&gt;
                    wsrTabSrcRef&lt;SPAN style="color: #d2cd86;"&gt;.&lt;/SPAN&gt;Show &lt;SPAN style="color: #d2cd86;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #e66170; font-weight: bold;"&gt;false&lt;/SPAN&gt;&lt;SPAN style="color: #b060b0;"&gt;;&lt;/SPAN&gt;
                &lt;SPAN style="color: #b060b0;"&gt;}&lt;/SPAN&gt;
            &lt;SPAN style="color: #b060b0;"&gt;}&lt;/SPAN&gt;
            
            &lt;SPAN style="color: #e66170; font-weight: bold;"&gt;if&lt;/SPAN&gt; &lt;SPAN style="color: #d2cd86;"&gt;(&lt;/SPAN&gt;cs&lt;SPAN style="color: #d2cd86;"&gt;.&lt;/SPAN&gt;IsModified&lt;SPAN style="color: #d2cd86;"&gt;)&lt;/SPAN&gt;
            &lt;SPAN style="color: #b060b0;"&gt;{&lt;/SPAN&gt;
                cs&lt;SPAN style="color: #d2cd86;"&gt;.&lt;/SPAN&gt;Save&lt;SPAN style="color: #d2cd86;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #d2cd86;"&gt;)&lt;/SPAN&gt;&lt;SPAN style="color: #b060b0;"&gt;;&lt;/SPAN&gt;
 
                &lt;SPAN style="color: #9999a9;"&gt;// Reload to see the changes&lt;/SPAN&gt;
                Application&lt;SPAN style="color: #d2cd86;"&gt;.&lt;/SPAN&gt;ReloadAllMenus&lt;SPAN style="color: #d2cd86;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #d2cd86;"&gt;)&lt;/SPAN&gt;&lt;SPAN style="color: #b060b0;"&gt;;&lt;/SPAN&gt;
            &lt;SPAN style="color: #b060b0;"&gt;}&lt;/SPAN&gt;
 
        &lt;SPAN style="color: #b060b0;"&gt;}&lt;/SPAN&gt;
        &lt;SPAN style="color: #d2cd86;"&gt;[&lt;/SPAN&gt;CommandMethod&lt;SPAN style="color: #d2cd86;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #02d045;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #00c4c4;"&gt;CUIHIDERIBBONTAB&lt;/SPAN&gt;&lt;SPAN style="color: #02d045;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #d2cd86;"&gt;)&lt;/SPAN&gt;&lt;SPAN style="color: #d2cd86;"&gt;]&lt;/SPAN&gt;
        &lt;SPAN style="color: #e66170; font-weight: bold;"&gt;public&lt;/SPAN&gt; &lt;SPAN style="color: #e66170; font-weight: bold;"&gt;void&lt;/SPAN&gt; CmdCuiHideRibbonTab&lt;SPAN style="color: #d2cd86;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #d2cd86;"&gt;)&lt;/SPAN&gt;
        &lt;SPAN style="color: #b060b0;"&gt;{&lt;/SPAN&gt;
            &lt;SPAN style="color: #e66170; font-weight: bold;"&gt;var&lt;/SPAN&gt; ed &lt;SPAN style="color: #d2cd86;"&gt;=&lt;/SPAN&gt; Application&lt;SPAN style="color: #d2cd86;"&gt;.&lt;/SPAN&gt;DocumentManager&lt;SPAN style="color: #d2cd86;"&gt;.&lt;/SPAN&gt;MdiActiveDocument&lt;SPAN style="color: #d2cd86;"&gt;.&lt;/SPAN&gt;Editor&lt;SPAN style="color: #b060b0;"&gt;;&lt;/SPAN&gt;
            &lt;SPAN style="color: #e66170; font-weight: bold;"&gt;var&lt;/SPAN&gt; promptStringResult &lt;SPAN style="color: #d2cd86;"&gt;=&lt;/SPAN&gt; ed&lt;SPAN style="color: #d2cd86;"&gt;.&lt;/SPAN&gt;GetString&lt;SPAN style="color: #d2cd86;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #02d045;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #00c4c4;"&gt;Enter Ribbon Element Id for.ex .\"ID_TabHome3D\"\n&lt;/SPAN&gt;&lt;SPAN style="color: #02d045;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #d2cd86;"&gt;)&lt;/SPAN&gt;&lt;SPAN style="color: #b060b0;"&gt;;&lt;/SPAN&gt;
            &lt;SPAN style="color: #e66170; font-weight: bold;"&gt;if&lt;/SPAN&gt; &lt;SPAN style="color: #d2cd86;"&gt;(&lt;/SPAN&gt;promptStringResult&lt;SPAN style="color: #d2cd86;"&gt;.&lt;/SPAN&gt;Status &lt;SPAN style="color: #d2cd86;"&gt;!&lt;/SPAN&gt;&lt;SPAN style="color: #d2cd86;"&gt;=&lt;/SPAN&gt; PromptStatus&lt;SPAN style="color: #d2cd86;"&gt;.&lt;/SPAN&gt;OK&lt;SPAN style="color: #d2cd86;"&gt;)&lt;/SPAN&gt; &lt;SPAN style="color: #e66170; font-weight: bold;"&gt;return&lt;/SPAN&gt;&lt;SPAN style="color: #b060b0;"&gt;;&lt;/SPAN&gt;
            &lt;SPAN style="color: #e66170; font-weight: bold;"&gt;var&lt;/SPAN&gt; ribbonTabId &lt;SPAN style="color: #d2cd86;"&gt;=&lt;/SPAN&gt; promptStringResult&lt;SPAN style="color: #d2cd86;"&gt;.&lt;/SPAN&gt;StringResult&lt;SPAN style="color: #b060b0;"&gt;;&lt;/SPAN&gt;
            CuiHideRibbonTab&lt;SPAN style="color: #d2cd86;"&gt;(&lt;/SPAN&gt;ribbonTabId&lt;SPAN style="color: #d2cd86;"&gt;)&lt;/SPAN&gt;&lt;SPAN style="color: #b060b0;"&gt;;&lt;/SPAN&gt;
        &lt;SPAN style="color: #b060b0;"&gt;}&lt;/SPAN&gt;
        &lt;SPAN style="color: #d2cd86;"&gt;[&lt;/SPAN&gt;LispFunction&lt;SPAN style="color: #d2cd86;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #02d045;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #00c4c4;"&gt;CUIHIDERIBBONTAB&lt;/SPAN&gt;&lt;SPAN style="color: #02d045;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #d2cd86;"&gt;)&lt;/SPAN&gt;&lt;SPAN style="color: #d2cd86;"&gt;]&lt;/SPAN&gt;
        &lt;SPAN style="color: #e66170; font-weight: bold;"&gt;public&lt;/SPAN&gt; &lt;SPAN style="color: #e66170; font-weight: bold;"&gt;void&lt;/SPAN&gt; LspCuiHideRibbonTab&lt;SPAN style="color: #d2cd86;"&gt;(&lt;/SPAN&gt;ResultBuffer args&lt;SPAN style="color: #d2cd86;"&gt;)&lt;/SPAN&gt;
        &lt;SPAN style="color: #b060b0;"&gt;{&lt;/SPAN&gt;
            &lt;SPAN style="color: #e66170; font-weight: bold;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="color: #d2cd86;"&gt;(&lt;/SPAN&gt;args &lt;SPAN style="color: #d2cd86;"&gt;!&lt;/SPAN&gt;&lt;SPAN style="color: #d2cd86;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #e66170; font-weight: bold;"&gt;null&lt;/SPAN&gt;&lt;SPAN style="color: #d2cd86;"&gt;)&lt;/SPAN&gt;
            &lt;SPAN style="color: #b060b0;"&gt;{&lt;/SPAN&gt;
                &lt;SPAN style="color: #e66170; font-weight: bold;"&gt;foreach&lt;/SPAN&gt;&lt;SPAN style="color: #d2cd86;"&gt;(&lt;/SPAN&gt;TypedValue tv &lt;SPAN style="color: #e66170; font-weight: bold;"&gt;in&lt;/SPAN&gt; args&lt;SPAN style="color: #d2cd86;"&gt;)&lt;/SPAN&gt;
                &lt;SPAN style="color: #b060b0;"&gt;{&lt;/SPAN&gt;
                    &lt;SPAN style="color: #e66170; font-weight: bold;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="color: #d2cd86;"&gt;(&lt;/SPAN&gt;tv&lt;SPAN style="color: #d2cd86;"&gt;.&lt;/SPAN&gt;TypeCode &lt;SPAN style="color: #d2cd86;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #d2cd86;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #d2cd86;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #e66170; font-weight: bold;"&gt;int&lt;/SPAN&gt;&lt;SPAN style="color: #d2cd86;"&gt;)&lt;/SPAN&gt;LispDataType&lt;SPAN style="color: #d2cd86;"&gt;.&lt;/SPAN&gt;Text&lt;SPAN style="color: #d2cd86;"&gt;)&lt;/SPAN&gt;
                    &lt;SPAN style="color: #b060b0;"&gt;{&lt;/SPAN&gt;
                        CuiHideRibbonTab&lt;SPAN style="color: #d2cd86;"&gt;(&lt;/SPAN&gt;tv&lt;SPAN style="color: #d2cd86;"&gt;.&lt;/SPAN&gt;Value&lt;SPAN style="color: #d2cd86;"&gt;.&lt;/SPAN&gt;ToString&lt;SPAN style="color: #d2cd86;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #d2cd86;"&gt;)&lt;/SPAN&gt;&lt;SPAN style="color: #d2cd86;"&gt;)&lt;/SPAN&gt;&lt;SPAN style="color: #b060b0;"&gt;;&lt;/SPAN&gt;
                    &lt;SPAN style="color: #b060b0;"&gt;}&lt;/SPAN&gt;
                &lt;SPAN style="color: #b060b0;"&gt;}&lt;/SPAN&gt;
            &lt;SPAN style="color: #b060b0;"&gt;}&lt;/SPAN&gt;
        &lt;SPAN style="color: #b060b0;"&gt;}&lt;/SPAN&gt;
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Find CuiHelperlibrary.zip&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Apr 2019 06:11:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/is-there-any-way-to-make-ribbon-tab-visible-from-partial-cuix/m-p/8703357#M5536</guid>
      <dc:creator>moogalm</dc:creator>
      <dc:date>2019-04-03T06:11:27Z</dc:date>
    </item>
    <item>
      <title>Re: Is there any way to make Ribbon Tab visible from Partial CUIX?</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/is-there-any-way-to-make-ribbon-tab-visible-from-partial-cuix/m-p/8707197#M5537</link>
      <description>&lt;P&gt;Hi Madhukar,&lt;/P&gt;
&lt;P&gt;Thanks for your reply.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am new to CUIX. I thought only CUIX load will add new Ribbon Tab to existing Workspaces.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Does it mean that Ribbon added in CUIX will need some type of coding to load new ribbon tab automatically?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Sachin&lt;/P&gt;</description>
      <pubDate>Thu, 04 Apr 2019 12:03:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/is-there-any-way-to-make-ribbon-tab-visible-from-partial-cuix/m-p/8707197#M5537</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-04-04T12:03:56Z</dc:date>
    </item>
    <item>
      <title>Re: Is there any way to make Ribbon Tab visible from Partial CUIX?</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/is-there-any-way-to-make-ribbon-tab-visible-from-partial-cuix/m-p/8709571#M5538</link>
      <description>&lt;P&gt;Hi Madhukar,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I got the may to make it visible on load. I missed the "Add new Tab" setting of CUIX file for Ribbon Tab.&lt;/P&gt;
&lt;P&gt;Now it is working as expected.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Sachin&lt;/P&gt;</description>
      <pubDate>Fri, 05 Apr 2019 06:14:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/is-there-any-way-to-make-ribbon-tab-visible-from-partial-cuix/m-p/8709571#M5538</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-04-05T06:14:52Z</dc:date>
    </item>
  </channel>
</rss>

