<?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 : Multiple MRU Lists</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Toolkit Pro : Multiple MRU Lists]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 10 Jun 2026 10:19:36 +0000</pubDate>
  <lastBuildDate>Tue, 09 Jun 2009 16:35:31 +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=14450</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[Multiple MRU Lists : Wow, that was perfect.Thank you...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14450&amp;PID=49775&amp;title=multiple-mru-lists#49775</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=5291">dawiebe</a><br /><strong>Subject:</strong> 14450<br /><strong>Posted:</strong> 09 June 2009 at 4:35pm<br /><br />Wow, that was perfect.<br><br>Thank you so much for your help!<br><br>Dave<br>]]>
   </description>
   <pubDate>Tue, 09 Jun 2009 16:35:31 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14450&amp;PID=49775&amp;title=multiple-mru-lists#49775</guid>
  </item> 
  <item>
   <title><![CDATA[Multiple MRU Lists : Hi,  Here one sample  MRUSample.zip...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14450&amp;PID=49723&amp;title=multiple-mru-lists#49723</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 14450<br /><strong>Posted:</strong> 09 June 2009 at 1:57am<br /><br />Hi,<DIV>&nbsp;</DIV><DIV>Here one sample </DIV><DIV><a href="http://forum.codejock.com/uploads/20090609_015657_MRUSample.zip" target="_blank">MRUSample.zip</A></DIV>]]>
   </description>
   <pubDate>Tue, 09 Jun 2009 01:57:28 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14450&amp;PID=49723&amp;title=multiple-mru-lists#49723</guid>
  </item> 
  <item>
   <title><![CDATA[Multiple MRU Lists : Hello,I have been using other...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14450&amp;PID=49642&amp;title=multiple-mru-lists#49642</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=5291">dawiebe</a><br /><strong>Subject:</strong> 14450<br /><strong>Posted:</strong> 04 June 2009 at 10:15am<br /><br />Hello,<br><br>I have been using other tutorials in VC++6.0 to use multiple MRU lists, (<a href="http://www.codeguru.com/cpp/w-d/doc_view/mrumostrecentusedfilelist/article.php/c3297" target="_blank">http://www.codeguru.com/cpp/w-d/doc_view/mrumostrecentusedfilelist/article.php/c3297</a>), however when it goes to update the MRU Menu, <br><br><u>Code:</u><br><table width="99%"><tr><td><pre class="BBcode"><br><font face="Courier New, Courier, mono">void CRecentFileList::UpdateMenu(CCmdUI* pCmdUI)<br>{<br>&nbsp;&nbsp; &nbsp;ASSERT(m_arrNames != NULL);<br><br>&nbsp;&nbsp; &nbsp;CMenu* pMenu = pCmdUI-&gt;m_pMenu;<br>&nbsp;&nbsp; &nbsp;if (m_strOriginal.IsEmpty() &amp;&amp; pMenu != NULL)<br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;pMenu-&gt;GetMenuString(pCmdUI-&gt;m_nID, m_strOriginal, MF_BYCOMMAND);<br><br>&nbsp;&nbsp; &nbsp;if (m_arrNames&#091;0&#093;.IsEmpty()) </font><font color="#006633" face="Courier New, Courier, mono">// There are items in the array list,</font><font face="Courier New, Courier, mono"><br>&nbsp;&nbsp; &nbsp;{&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <font color="#006633">//</font> </font><font color="#006633" face="Courier New, Courier, mono"> so it skips over this if-statement</font><br><font face="Courier New, Courier, mono">&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;// no MRU files<br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;if (!m_strOriginal.IsEmpty())<br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;pCmdUI-&gt;SetText(m_strOriginal);<br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;pCmdUI-&gt;Enable(FALSE);<br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;return;<br>&nbsp;&nbsp; &nbsp;}<br><br>&nbsp;&nbsp; &nbsp;if (pCmdUI-&gt;m_pMenu == NULL) </font><font color="#006633" face="Courier New, Courier, mono">// But m_pMenu always ends up being null, <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </font><font face="Courier New, Courier, mono">return;</font><font color="#006633" face="Courier New, Courier, mono">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // and it doesn't actually add the MRU files <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // to the menu bar list.</font><font face="Courier New, Courier, mono"><br><br>&nbsp;&nbsp; &nbsp;for (int iMRU = 0; iMRU &lt; m_nSize; iMRU++)<br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;pCmdUI-&gt;m_pMenu-&gt;DeleteMenu(pCmdUI-&gt;m_nID + iMRU, MF_BYCOMMAND);</font><br><font face="Courier New, Courier, mono">&nbsp; ............<br>}</pre></td></tr></table><br></font><br>In the MRU list on the menu bar, there ends up being one item which I can highlight and click on, but it has no name.<br><br><br>I have searched the forums, and I have found a similar request here:<br><a href="https://forum.codejock.com/forum_posts.asp?TID=2848&amp;KW=&amp;PID=49606#49606" target="_blank">https://forum.codejock.com/forum_posts.asp?TID=2848&amp;KW=&amp;PID=49606#49606</a><br>however the files that were provided are no longer accessable.<br><br>Thanks<br><br>Dave]]>
   </description>
   <pubDate>Thu, 04 Jun 2009 10:15:27 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14450&amp;PID=49642&amp;title=multiple-mru-lists#49642</guid>
  </item> 
 </channel>
</rss>