<?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 System Menu</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Command Bars : RibbonBar System Menu]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Thu, 11 Jun 2026 11:30:39 +0000</pubDate>
  <lastBuildDate>Wed, 11 Jun 2008 16:08:25 +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=10453</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 System Menu : Very useful posting -- thank you...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=10453&amp;PID=36586&amp;title=ribbonbar-system-menu#36586</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4225">chrisABC</a><br /><strong>Subject:</strong> 10453<br /><strong>Posted:</strong> 11 June 2008 at 4:08pm<br /><br />Very useful posting -- thank you very much.<br><br><br>]]>
   </description>
   <pubDate>Wed, 11 Jun 2008 16:08:25 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=10453&amp;PID=36586&amp;title=ribbonbar-system-menu#36586</guid>
  </item> 
  <item>
   <title><![CDATA[RibbonBar System Menu :  It is magicActually that text...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=10453&amp;PID=36581&amp;title=ribbonbar-system-menu#36581</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=369">SuperMario</a><br /><strong>Subject:</strong> 10453<br /><strong>Posted:</strong> 11 June 2008 at 1:47pm<br /><br />It is magic<img src="http://forum.codejock.com/smileys/smiley20.gif" border="0" align="absmiddle"><br><br>Actually that text is the default text in the standard MFC Resources.&nbsp; Which is why you can't find it.&nbsp; It is controlled by the ID given to the control.&nbsp; In this case, 57606 or 0xE106.&nbsp; If you want to use your own text then you can just use a different ID or manually set the Description text.&nbsp; If no Description text is found it will use the default MFC string when using this ID.<br><br>These "special" default MFC resource ID can be found in AFXRES.h, which is a standard MFC file, not a Codejock file.<br><br>Just some commands from the file (not the ID is in Hexadecimal):<br><br>// File commands<br>#define ID_FILE_NEW&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0xE100<br>#define ID_FILE_OPEN&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0xE101<br>#define ID_FILE_CLOSE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0xE102<br>#define ID_FILE_SAVE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0xE103<br>#define ID_FILE_SAVE_AS&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0xE104<br>#define ID_FILE_PAGE_SETUP&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0xE105<br>#define ID_FILE_PRINT_SETUP&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0xE106<br>#define ID_FILE_PRINT&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0xE107<br>#define ID_FILE_PRINT_DIRECT&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0xE108<br>#define ID_FILE_PRINT_PREVIEW&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0xE109<br>#define ID_FILE_UPDATE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0xE10A<br>#define ID_FILE_SAVE_COPY_AS&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0xE10B<br>#define ID_FILE_SEND_MAIL&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0xE10C<br><br>// Edit commands<br>#define ID_EDIT_CLEAR&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0xE120<br>#define ID_EDIT_CLEAR_ALL&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0xE121<br>#define ID_EDIT_COPY&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0xE122<br>#define ID_EDIT_CUT&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0xE123<br>#define ID_EDIT_FIND&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0xE124<br>#define ID_EDIT_PASTE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0xE125<br>#define ID_EDIT_PASTE_LINK&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0xE126<br>#define ID_EDIT_PASTE_SPECIAL&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0xE127<br>#define ID_EDIT_REPEAT&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0xE128<br>#define ID_EDIT_REPLACE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0xE129<br>#define ID_EDIT_SELECT_ALL&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0xE12A<br>#define ID_EDIT_UNDO&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0xE12B<br>#define ID_EDIT_REDO&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0xE12C<br><br>// Window commands<br>#define ID_WINDOW_NEW&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0xE130<br>#define ID_WINDOW_ARRANGE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0xE131<br>#define ID_WINDOW_CASCADE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0xE132<br>#define ID_WINDOW_TILE_HORZ&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0xE133<br>#define ID_WINDOW_TILE_VERT&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0xE134<br>#define ID_WINDOW_SPLIT&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0xE135<br><br>The text for these IDs can be found in MFC42.DLL<br><br>In short, if you don't like the text or need something different use a different ID from the list above or be sure to set the Description Text.<br><br>We recommend you use IDs from 100 to 9000 to avoid conflicts like this.&nbsp; These IDs are not reserved in MFC or Codejock sources.&nbsp; But as you can see, they can be useful, so they are an undocumented feature<img src="http://forum.codejock.com/smileys/smiley2.gif" border="0" align="absmiddle"><br><br>Hope this clears things up.<br>]]>
   </description>
   <pubDate>Wed, 11 Jun 2008 13:47:34 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=10453&amp;PID=36581&amp;title=ribbonbar-system-menu#36581</guid>
  </item> 
  <item>
   <title><![CDATA[RibbonBar System Menu : Thanks. I see how to set my own...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=10453&amp;PID=36542&amp;title=ribbonbar-system-menu#36542</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4225">chrisABC</a><br /><strong>Subject:</strong> 10453<br /><strong>Posted:</strong> 11 June 2008 at 4:44am<br /><br />Thanks. I see how to set my own Description Text for an item I create in code.<br><br>But I still cannot see where the Description Text in the Ribbon Sample comes from -- ie. I can see where the control is created in code, but there is no Description Text in any of the code I can see.&nbsp; This remains a mystery, but it is not important.<img src="http://forum.codejock.com/smileys/smiley4.gif" border="0" align="absmiddle"><br><br>A related question.&nbsp;&nbsp; My Description Text appears nicely in the Popup Menu, and if I pause the mouse over it, that text then also appears in the StatusBar (ID=0).&nbsp; This is sort of nice, but pointless.&nbsp;&nbsp; Is it possible to turn Off the Description Text.visible&nbsp; in the Menu, so you got useful extra text when you pause mouse on Menu, or to have some other property text automatically appear in the StatusBar, eg Tag or ToolTip?&nbsp;&nbsp;&nbsp; Or am I missing the point somehow?<br>]]>
   </description>
   <pubDate>Wed, 11 Jun 2008 04:44:35 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=10453&amp;PID=36542&amp;title=ribbonbar-system-menu#36542</guid>
  </item> 
  <item>
   <title><![CDATA[RibbonBar System Menu : CommandBarControl-&amp;gt;DescriptionText ...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=10453&amp;PID=36500&amp;title=ribbonbar-system-menu#36500</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=369">SuperMario</a><br /><strong>Subject:</strong> 10453<br /><strong>Posted:</strong> 10 June 2008 at 10:57am<br /><br />CommandBarControl-&gt;DescriptionText]]>
   </description>
   <pubDate>Tue, 10 Jun 2008 10:57:03 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=10453&amp;PID=36500&amp;title=ribbonbar-system-menu#36500</guid>
  </item> 
  <item>
   <title><![CDATA[RibbonBar System Menu : Nobody knows the answer ??  ]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=10453&amp;PID=36487&amp;title=ribbonbar-system-menu#36487</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4225">chrisABC</a><br /><strong>Subject:</strong> 10453<br /><strong>Posted:</strong> 10 June 2008 at 7:37am<br /><br />Nobody knows the answer ??]]>
   </description>
   <pubDate>Tue, 10 Jun 2008 07:37:09 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=10453&amp;PID=36487&amp;title=ribbonbar-system-menu#36487</guid>
  </item> 
  <item>
   <title><![CDATA[RibbonBar System Menu : I need to ask the same question.Looking...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=10453&amp;PID=36343&amp;title=ribbonbar-system-menu#36343</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4225">chrisABC</a><br /><strong>Subject:</strong> 10453<br /><strong>Posted:</strong> 06 June 2008 at 2:26am<br /><br />I need to ask the same question.<img src="http://forum.codejock.com/smileys/smiley9.gif" border="0" align="absmiddle"><br><br>Looking at the RibbonSample, when I run it the Print Setup menu has description text underneath of: "Change the printer and printing options".<br><br>Where is that description text stored????&nbsp; I can't find it in any of the code.<br><br>I found the CommandBars Designer (right Click on CommandBars control and select Edit) and under Actions I found a Print Setup item with description as above -- however, when I try changing it and SAVE, it reverts back to its original text.<br><br>So maybe this is a built-in default item that can't be altered??<br>]]>
   </description>
   <pubDate>Fri, 06 Jun 2008 02:26:45 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=10453&amp;PID=36343&amp;title=ribbonbar-system-menu#36343</guid>
  </item> 
  <item>
   <title><![CDATA[RibbonBar System Menu : Cheers, I found it about 10 minutes...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=10453&amp;PID=34578&amp;title=ribbonbar-system-menu#34578</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2278">markp.uk</a><br /><strong>Subject:</strong> 10453<br /><strong>Posted:</strong> 02 May 2008 at 2:51pm<br /><br />Cheers, I found it about 10 minutes after i posted the question.&nbsp;<img src="http://forum.codejock.com/smileys/smiley9.gif" border="0" align="absmiddle"><br><br>Thanks for the assistance all the same.<br>]]>
   </description>
   <pubDate>Fri, 02 May 2008 14:51:48 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=10453&amp;PID=34578&amp;title=ribbonbar-system-menu#34578</guid>
  </item> 
  <item>
   <title><![CDATA[RibbonBar System Menu : Hi, its the description property....]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=10453&amp;PID=34571&amp;title=ribbonbar-system-menu#34571</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2090">joeliner</a><br /><strong>Subject:</strong> 10453<br /><strong>Posted:</strong> 02 May 2008 at 12:49pm<br /><br />Hi, <br><br>its the description property. in your code put something like:<br>&nbsp;&nbsp;&nbsp; AddButton PopupBar.Controls, xtpControlButton, ID_FILE_QUICKPRINT, "&amp;Quick Print", False _<br>&nbsp;&nbsp;&nbsp; , "Send the document directly to the default printer without making changes"<br><br>then have the addbutton function:<br>Private Function AddButton(Controls As CommandBarControls, ControlType As XTPControlType, Id As Long, _<br>Optional MCaption As String, Optional BeginGroup As Boolean = False, Optional description As String, _<br>Optional ButtonStyle As XTPButtonStyle = xtpButtonAutomatic) As CommandBarControl<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; Dim Control As CommandBarControl<br>&nbsp;&nbsp;&nbsp; Set Control = Controls.Add(ControlType, Id, MCaption)<br>&nbsp;&nbsp;&nbsp; Control.BeginGroup = BeginGroup<br>&nbsp;&nbsp;&nbsp; Control.DescriptionText = description<br>&nbsp;&nbsp;&nbsp; Control.Style = ButtonStyle<br>&nbsp;&nbsp;&nbsp; Set AddButton = Control<br>&nbsp;&nbsp;&nbsp; <br>End Function<br><br>hope this will help :)<br>]]>
   </description>
   <pubDate>Fri, 02 May 2008 12:49:08 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=10453&amp;PID=34571&amp;title=ribbonbar-system-menu#34571</guid>
  </item> 
  <item>
   <title><![CDATA[RibbonBar System Menu : In the ribbon bar sample you have...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=10453&amp;PID=34562&amp;title=ribbonbar-system-menu#34562</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2278">markp.uk</a><br /><strong>Subject:</strong> 10453<br /><strong>Posted:</strong> 02 May 2008 at 9:00am<br /><br />In the ribbon bar sample you have a system menu with 3 print options in the popup bar, i may be missing something, but how do you set the descriptive text underneath the caption, as show highlighted below.<br><img src="file:///C:/DOCUME%7E1/YOURUS%7E1/LOCALS%7E1/Temp/moz-screenshot.jpg" border="0"><img src="file:///C:/DOCUME%7E1/YOURUS%7E1/LOCALS%7E1/Temp/moz-screenshot-1.jpg" border="0"><img src="file:///C:/DOCUME%7E1/YOURUS%7E1/LOCALS%7E1/Temp/moz-screenshot-2.jpg" border="0"><img src="file:///C:/DOCUME%7E1/YOURUS%7E1/LOCALS%7E1/Temp/moz-screenshot-3.jpg" border="0"><img src="uploads/20080502_085851_Questi&#111;n.JPG" height="42" width="296" border="0"><br><br>I have searched the code and image resources and cannot find any mention of this descriptive text.<br>]]>
   </description>
   <pubDate>Fri, 02 May 2008 09:00:12 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=10453&amp;PID=34562&amp;title=ribbonbar-system-menu#34562</guid>
  </item> 
 </channel>
</rss>