<?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 : Menu Prompts Not Displayed in Ribbon Status Bar</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Command Bars : Menu Prompts Not Displayed in Ribbon Status Bar]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 10 Jun 2026 23:04:12 +0000</pubDate>
  <lastBuildDate>Wed, 13 Feb 2008 14:00:18 +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=9572</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[Menu Prompts Not Displayed in Ribbon Status Bar :    oleg wrote:Hi, You need...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=9572&amp;PID=31156&amp;title=menu-prompts-not-displayed-in-ribbon-status-bar#31156</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2448">cjsnewbie</a><br /><strong>Subject:</strong> 9572<br /><strong>Posted:</strong> 13 February 2008 at 2:00pm<br /><br /><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Originally posted by oleg" alt="Originally posted by oleg" style="vertical-align: text-bottom;" /> <strong>oleg wrote:</strong><br /><br />Hi,<div>You need add indicator with Id = 0. See in sample line after m<font size="2">_wndStatusBar.Create</font></div></td></tr></table><br>Thanks, oleg. That worked. Didn't know at least one indicator is required. <br>]]>
   </description>
   <pubDate>Wed, 13 Feb 2008 14:00:18 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=9572&amp;PID=31156&amp;title=menu-prompts-not-displayed-in-ribbon-status-bar#31156</guid>
  </item> 
  <item>
   <title><![CDATA[Menu Prompts Not Displayed in Ribbon Status Bar : Hi, You need add indicator with...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=9572&amp;PID=31135&amp;title=menu-prompts-not-displayed-in-ribbon-status-bar#31135</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 9572<br /><strong>Posted:</strong> 13 February 2008 at 1:14am<br /><br />Hi,<DIV>You need add indicator with Id = 0. See in sample line after m<FONT size=2>_wndStatusBar.Create</DIV></FONT>]]>
   </description>
   <pubDate>Wed, 13 Feb 2008 01:14:09 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=9572&amp;PID=31135&amp;title=menu-prompts-not-displayed-in-ribbon-status-bar#31135</guid>
  </item> 
  <item>
   <title><![CDATA[Menu Prompts Not Displayed in Ribbon Status Bar : Hi,   I&amp;#039;m creating my ribbon...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=9572&amp;PID=31125&amp;title=menu-prompts-not-displayed-in-ribbon-status-bar#31125</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2448">cjsnewbie</a><br /><strong>Subject:</strong> 9572<br /><strong>Posted:</strong> 12 February 2008 at 6:21pm<br /><br />Hi, <DIV>&nbsp;</DIV><DIV>I'm creating my ribbon bar like this...</DIV><DIV>&nbsp;</DIV><DIV><table width="99%"><tr><td><pre class="BBcode"><FONT color=#0000ff size=2></FONT></DIV><DIV><FONT color=#0000ff size=2>this is defined in header file as - </FONT><FONT color=#0000ff size=2><FONT size=2>CXTPStatusBar m_wndStatusBar</DIV></FONT><P>int</FONT><FONT size=2> CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)</P><P>{</P><P>XTPSkinManager()-&gt;Remove(m_hWnd);</P><P></FONT><FONT color=#0000ff size=2>if</FONT><FONT size=2> (CXTPFrameWnd::OnCreate(lpCreateStruct) == -1)</P><P></FONT><FONT color=#0000ff size=2>&nbsp;&nbsp;&nbsp; return</FONT><FONT size=2> -1;</P><P></FONT><FONT color=#0000ff size=2>if</FONT><FONT size=2> (!m_wndStatusBar.Create(</FONT><FONT color=#0000ff size=2>this</FONT><FONT size=2>))</P><P>{</P><P>TRACE0(</FONT><FONT color=#a31515 size=2>"Failed to create status bar\n"</FONT><FONT size=2>);</P><P></FONT><FONT color=#0000ff size=2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return</FONT><FONT size=2> -1; </P><P>}</P><P></FONT><FONT color=#0000ff size=2>if</FONT><FONT size=2> (!InitCommandBars())</P><P></FONT><FONT color=#0000ff size=2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return</FONT><FONT size=2> -1;</P><P>CXTPCommandBars* pCommandBars = GetCommandBars(); </P><P>m_wndStatusBar.SetCommandBars(pCommandBars);</P><P>pCommandBars-&gt;SetTheme(xtpThemeRibbon); </P><P>pCommandBars-&gt;GetImageManager()-&gt;SetIcons(IDR_SMALLICONS);</P><P>m_wndStatusBar.SetFont(pCommandBars-&gt;GetPaintManager()-&gt;GetIconFont());</P><DIV></FONT><FONT size=2></FONT>&nbsp;</DIV><DIV><FONT size=2>CXTPToolTipContext* pToolTipContext = GetCommandBars()-&gt;GetToolTipContext();</DIV><P>pToolTipContext-&gt;SetStyle(xtpToolTipOffice2007);</P><P>pToolTipContext-&gt;ShowTitleAndDescription();</P><P>pToolTipContext-&gt;ShowImage(TRUE, 0);</P><P>pToolTipContext-&gt;SetMargin(CRect(2, 2, 2, 2));</P><P>pToolTipContext-&gt;SetMaxTipWidth(180);</P><P>pToolTipContext-&gt;SetFont(pCommandBars-&gt;GetPaintManager()-&gt;GetIconFont());</P><P></FONT><FONT color=#0000ff size=2>if</FONT><FONT size=2> (!CreateRibbonBar())</P><DIV>{</DIV><P>TRACE0(</FONT><FONT color=#a31515 size=2>"Failed to create ribbon\n"</FONT><FONT size=2>);</P><P></FONT><FONT color=#0000ff size=2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return</FONT><FONT size=2> -1;</P><P>} </P><DIV></FONT><FONT color=#0000ff size=2>return</FONT><FONT size=2> 0;</DIV><P>}</P><DIV></FONT></pre></td></tr></table></DIV><DIV>&nbsp;</DIV><DIV>My main problem is that I have menu prompt stings added in resource which should be displayed in status bar. I tried Ribbon bar sample. It is working fine. </DIV><DIV>&nbsp;</DIV><DIV>Can anybody tell me what is wrong in this code? Am I missing anything?</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Tue, 12 Feb 2008 18:21:06 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=9572&amp;PID=31125&amp;title=menu-prompts-not-displayed-in-ribbon-status-bar#31125</guid>
  </item> 
 </channel>
</rss>