<?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 : Make Recent File</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Toolkit Pro : Make Recent File]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Tue, 21 Apr 2026 19:41:33 +0000</pubDate>
  <lastBuildDate>Fri, 19 Aug 2005 19:07:14 +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=2727</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[Make Recent File : thank you ver much.  I solved...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=2727&amp;PID=8240&amp;title=make-recent-file#8240</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1392">gniwon</a><br /><strong>Subject:</strong> 2727<br /><strong>Posted:</strong> 19 August 2005 at 7:07pm<br /><br /><P>thank you ver much. </P><P>I solved this matter.</P>]]>
   </description>
   <pubDate>Fri, 19 Aug 2005 19:07:14 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=2727&amp;PID=8240&amp;title=make-recent-file#8240</guid>
  </item> 
  <item>
   <title><![CDATA[Make Recent File : See dynamic popups sample. ]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=2727&amp;PID=8144&amp;title=make-recent-file#8144</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 2727<br /><strong>Posted:</strong> 16 August 2005 at 2:31am<br /><br />See dynamic popups sample.]]>
   </description>
   <pubDate>Tue, 16 Aug 2005 02:31:36 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=2727&amp;PID=8144&amp;title=make-recent-file#8144</guid>
  </item> 
  <item>
   <title><![CDATA[Make Recent File : Hello .  I want to make two &amp;#034;Recent...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=2727&amp;PID=8140&amp;title=make-recent-file#8140</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1392">gniwon</a><br /><strong>Subject:</strong> 2727<br /><strong>Posted:</strong> 16 August 2005 at 12:30am<br /><br /><P>Hello . </P><P>I want to make two "Recent file" menu as "Recent project file" and "Rcent source file", Please help me how to do. </P><P><BR>BOOL CPHEzApp::OnCmdMsg(UINT nID, int nCode, void* pExtra, AFX_CMDHANDLERINFO* pHandlerInfo) <BR>{ <BR>// TODO: Add your specialized code here and/or call the base class <BR>UINT nMsg = 0; <BR>int nCod = nCode; <BR>WORD m_nMenuPrjId = ID_PROJECT_RECENT; <BR>WORD m_nMenuId1 = ID_FILE_RECENT; <BR>WORD MRU_RANGE = 4; </P><P>if (nCod != CN_UPDATE_COMMAND_UI) { <BR>nMsg = HIWORD(nCod); <BR>nCod = LOWORD(nCod); <BR>} </P><P>if (nMsg == 0) nMsg = WM_COMMAND; </P><P>if ((nCod==CN_UPDATE_COMMAND_UI) &amp;&amp; (nID&gt;=m_nMenuPrjId) &amp;&amp; (nID&lt;=m_nMenuPrjId+MRU_RANGE)) <BR>{ <BR>BOOL bResult = TRUE; // default is ok <BR>ASSERT(pExtra != NULL); <BR>CCmdUI* pCmdUI = (CCmdUI*)pExtra; <BR>ASSERT(!pCmdUI-&gt;m_bContinueRouting); // idle - not set <BR>UpdateRecentProjectMenu(pCmdUI); <BR>bResult = !pCmdUI-&gt;m_bContinueRouting; <BR>pCmdUI-&gt;m_bContinueRouting = FALSE; // go back to idle <BR>return bResult; <BR>} </P><P>if ((nCod==CN_UPDATE_COMMAND_UI) &amp;&amp; (nID&gt;=m_nMenuId1) &amp;&amp; (nID&lt;=m_nMenuId1+MRU_RANGE)) <BR>{ <BR>BOOL bResult = TRUE; // default is ok <BR>ASSERT(pExtra != NULL); <BR>CCmdUI* pCmdUI = (CCmdUI*)pExtra; <BR>ASSERT(!pCmdUI-&gt;m_bContinueRouting); // idle - not set <BR>UpdateRecentEctMenu(pCmdUI); <BR>bResult = !pCmdUI-&gt;m_bContinueRouting; <BR>pCmdUI-&gt;m_bContinueRouting = FALSE; // go back to idle <BR>return bResult; <BR>} </P><P>if ((nMsg==WM_COMMAND) &amp;&amp; (nCod==CN_COMMAND) &amp;&amp; (nID&gt;=m_nMenuPrjId) &amp;&amp; (nID&lt;=m_nMenuPrjId+MRU_RANGE)) <BR>{ </P><P>return OpenRecentProject(nID); <BR>} </P><P>if ((nMsg==WM_COMMAND) &amp;&amp; (nCod==CN_COMMAND) &amp;&amp; (nID&gt;=m_nMenuId1) &amp;&amp; (nID&lt;=m_nMenuId1+MRU_RANGE)) <BR>{ </P><P>return OpenEctRecentFile(nID); <BR>} </P><P>return CWinApp::OnCmdMsg(nID, nCode, pExtra, pHandlerInfo); <BR>} </P><P>CCmdUI* pCmdUI = (CCmdUI*)pExtra; <BR>==&gt; menu value is returned always NULL. <BR>Is no there solvable method? <BR></P>]]>
   </description>
   <pubDate>Tue, 16 Aug 2005 00:30:08 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=2727&amp;PID=8140&amp;title=make-recent-file#8140</guid>
  </item> 
 </channel>
</rss>