<?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 : How to make two &quot;Recent file&quot; menu?</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Toolkit Pro : How to make two &quot;Recent file&quot; menu?]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 20 Apr 2026 09:08:03 +0000</pubDate>
  <lastBuildDate>Mon, 04 Oct 2004 04:42:04 +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=1224</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[How to make two &quot;Recent file&quot; menu? : I finished it. Thanks everyone.   ...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1224&amp;PID=3321&amp;title=how-to-make-two-recent-file-menu#3321</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=478">freehawk</a><br /><strong>Subject:</strong> 1224<br /><strong>Posted:</strong> 04 October 2004 at 4:42am<br /><br /><P>I finished it.</P><P>Thanks everyone.</P><P>&nbsp;</P><P><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Originally posted by freehawk" alt="Originally posted by freehawk" style="vertical-align: text-bottom;" /> <strong>freehawk wrote:</strong><br /><br /></P><P>Thank you very much.</P><P>I will try it, BTW, could you have some sample for it?</P><P>&nbsp;</P><P><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Originally posted by Boyd" alt="Originally posted by Boyd" style="vertical-align: text-bottom;" /> <strong>Boyd wrote:</strong><br /><br /></P><P>The approach I took in the ActiveX version will probably apply to MFC as well.&nbsp; I created a toolbar control for 'Open File' that was of type xtpSplitButtonPopup.&nbsp; This allows the user to click on the control OR have it also display a popup.&nbsp; If they click on the control, the 'Execute' event of CommandBars handles that control to open the standard file open dialog.&nbsp; I also used the 'InitCommandsPopup' event of the of CommandBars to detect when the popup portion of the control was about to be displayed.&nbsp; At that point, I would remove all the previous child controls from the 'Open File' menu and add my current recent files controls.&nbsp; Each 'Open Recent' control had the same control ID, and the caption was used to determine which recent file the user wanted to open.</P><P>I don't know the exact MFC approach for this, but this technique should be applicable to MFC as well.</P></td></tr></table></td></tr></table> ]]>
   </description>
   <pubDate>Mon, 04 Oct 2004 04:42:04 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1224&amp;PID=3321&amp;title=how-to-make-two-recent-file-menu#3321</guid>
  </item> 
  <item>
   <title><![CDATA[How to make two &quot;Recent file&quot; menu? : Thank you very much. I will try...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1224&amp;PID=3313&amp;title=how-to-make-two-recent-file-menu#3313</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=478">freehawk</a><br /><strong>Subject:</strong> 1224<br /><strong>Posted:</strong> 03 October 2004 at 11:47pm<br /><br /><P>Thank you very much.</P><P>I will try it, BTW, could you have some sample for it?</P><P>&nbsp;</P><P><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Originally posted by Boyd" alt="Originally posted by Boyd" style="vertical-align: text-bottom;" /> <strong>Boyd wrote:</strong><br /><br /></P><P>The approach I took in the ActiveX version will probably apply to MFC as well.&nbsp; I created a toolbar control for 'Open File' that was of type xtpSplitButtonPopup.&nbsp; This allows the user to click on the control OR have it also display a popup.&nbsp; If they click on the control, the 'Execute' event of CommandBars handles that control to open the standard file open dialog.&nbsp; I also used the 'InitCommandsPopup' event of the of CommandBars to detect when the popup portion of the control was about to be displayed.&nbsp; At that point, I would remove all the previous child controls from the 'Open File' menu and add my current recent files controls.&nbsp; Each 'Open Recent' control had the same control ID, and the caption was used to determine which recent file the user wanted to open.</P><P>I don't know the exact MFC approach for this, but this technique should be applicable to MFC as well.</P></td></tr></table> ]]>
   </description>
   <pubDate>Sun, 03 Oct 2004 23:47:16 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1224&amp;PID=3313&amp;title=how-to-make-two-recent-file-menu#3313</guid>
  </item> 
  <item>
   <title><![CDATA[How to make two &quot;Recent file&quot; menu? : The approach I took in the ActiveX...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1224&amp;PID=3300&amp;title=how-to-make-two-recent-file-menu#3300</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=260">Boyd</a><br /><strong>Subject:</strong> 1224<br /><strong>Posted:</strong> 01 October 2004 at 8:00am<br /><br /><P>The approach I took in the ActiveX version will probably apply to MFC as well.&nbsp; I created a toolbar control for 'Open File' that was of type xtpSplitButtonPopup.&nbsp; This allows the user to click on the control OR have it also display a popup.&nbsp; If they click on the control, the 'Execute' event of CommandBars handles that control to open the standard file open dialog.&nbsp; I also used the 'InitCommandsPopup' event of the of CommandBars to detect when the popup portion of the control was about to be displayed.&nbsp; At that point, I would remove all the previous child controls from the 'Open File' menu and add my current recent files controls.&nbsp; Each 'Open Recent' control had the same control ID, and the caption was used to determine which recent file the user wanted to open.</P><P>I don't know the exact MFC approach for this, but this technique should be applicable to MFC as well.</P>]]>
   </description>
   <pubDate>Fri, 01 Oct 2004 08:00:28 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1224&amp;PID=3300&amp;title=how-to-make-two-recent-file-menu#3300</guid>
  </item> 
  <item>
   <title><![CDATA[How to make two &quot;Recent file&quot; menu? : Hello . I want to make two &amp;#034;Recent...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1224&amp;PID=3299&amp;title=how-to-make-two-recent-file-menu#3299</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=478">freehawk</a><br /><strong>Subject:</strong> 1224<br /><strong>Posted:</strong> 30 September 2004 at 10:58pm<br /><br /><P>Hello .</P><P>&nbsp;I want to make two "Recent file" menu as "Recent project file" and "Rcent source file", Please help me how to do?</P><P>Thank you .</P>]]>
   </description>
   <pubDate>Thu, 30 Sep 2004 22:58:01 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1224&amp;PID=3299&amp;title=how-to-make-two-recent-file-menu#3299</guid>
  </item> 
 </channel>
</rss>