<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Codejock Developer Community : RibbonBar ContextTab not showing</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Command Bars : RibbonBar ContextTab not showing]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 10 Jun 2026 08:19:39 +0000</pubDate>
  <lastBuildDate>Mon, 18 Sep 2006 11:48:36 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>forum.codejock.com/RSS_post_feed.asp?TID=5066</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Codejock Developer Community]]></title>
   <url>http://forum.codejock.com/forum_images/codejock-logo.gif</url>
   <link>http://forum.codejock.com/</link>
  </image>
  <item>
   <title><![CDATA[RibbonBar ContextTab not showing : Yep it worked! Is it normal that...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=5066&amp;PID=15805&amp;title=ribbonbar-contexttab-not-showing#15805</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2071">cryo75</a><br /><strong>Subject:</strong> 5066<br /><strong>Posted:</strong> 18 September 2006 at 11:48am<br /><br /><P>Yep it worked!</P><P>Is it normal that the tab's background color is white?</P>]]>
   </description>
   <pubDate>Mon, 18 Sep 2006 11:48:36 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=5066&amp;PID=15805&amp;title=ribbonbar-contexttab-not-showing#15805</guid>
  </item> 
  <item>
   <title><![CDATA[RibbonBar ContextTab not showing : Hi,  parameter in InsertTab...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=5066&amp;PID=15782&amp;title=ribbonbar-contexttab-not-showing#15782</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 5066<br /><strong>Posted:</strong> 18 September 2006 at 4:08am<br /><br />Hi,<DIV>&nbsp;</DIV><DIV>parameter in InsertTab is Index - not Id,</DIV><DIV>so add</DIV>oTab.Id = 30000 <DIV></DIV><DIV></DIV><DIV>&nbsp;</DIV><DIV>and it will work.</DIV>]]>
   </description>
   <pubDate>Mon, 18 Sep 2006 04:08:40 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=5066&amp;PID=15782&amp;title=ribbonbar-contexttab-not-showing#15782</guid>
  </item> 
  <item>
   <title><![CDATA[RibbonBar ContextTab not showing : Hi,  I&amp;#039;ve got a ribbonbar...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=5066&amp;PID=15760&amp;title=ribbonbar-contexttab-not-showing#15760</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2071">cryo75</a><br /><strong>Subject:</strong> 5066<br /><strong>Posted:</strong> 17 September 2006 at 5:22am<br /><br />Hi,<DIV>&nbsp;</DIV><DIV>I've got a ribbonbar with about 8 visible tabs and a context tab. The context tab is originally false set up like this:</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;&nbsp;&nbsp; Set oTab = oRib.InsertTab(30000, "&amp;Favorites")<BR>&nbsp;&nbsp;&nbsp; With oTab<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .ContextCaption = "Favorites"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Color = xtpRibbonTabContextColorBlue<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Visible = False<BR>&nbsp;&nbsp;&nbsp; End With</DIV><DIV>&nbsp;</DIV><DIV>In the Execute event I have:</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;&nbsp;&nbsp; Select Case Control.Id<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Case 42001: mbShowContextFavorites = Not mbShowContextFavorites<BR>&nbsp;&nbsp;&nbsp; End Select</DIV><DIV>&nbsp;</DIV><DIV>And in the Update event I have:</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;&nbsp;&nbsp; Select Case Control.Id<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Case XTPCommandBarsSpecialCommands.XTP_ID_RIBBONCONTROLTAB:<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Dim oRib As RibbonBar<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Dim oTab As RibbonTab<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set oRib = cbar.ActiveMenuBar<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set oTab = oRib.FindTab(30000)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If Not oTab Is Nothing Then<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; oTab.Visible = mbShowContextFavorites<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End If<BR>&nbsp;&nbsp;&nbsp; End Select</DIV><DIV>&nbsp;</DIV><DIV>But the context tab is not showing!! Any ideas??</DIV><DIV>&nbsp;</DIV><DIV>Thanks,</DIV><DIV>Ivan</DIV>]]>
   </description>
   <pubDate>Sun, 17 Sep 2006 05:22:38 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=5066&amp;PID=15760&amp;title=ribbonbar-contexttab-not-showing#15760</guid>
  </item> 
 </channel>
</rss>