<?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 : StripMnemonics not correct</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Command Bars : StripMnemonics not correct]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sun, 14 Jun 2026 11:29:54 +0000</pubDate>
  <lastBuildDate>Wed, 27 May 2009 04:27:43 +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=14393</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[StripMnemonics not correct : Thank You, Oleg!Please comment:...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14393&amp;PID=49379&amp;title=stripmnemonics-not-correct#49379</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4605">zitz</a><br /><strong>Subject:</strong> 14393<br /><strong>Posted:</strong> 27 May 2009 at 4:27am<br /><br />Thank You, Oleg!<br>Please comment: https://forum.codejock.com/forum_posts.asp?TID=14321<br>]]>
   </description>
   <pubDate>Wed, 27 May 2009 04:27:43 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14393&amp;PID=49379&amp;title=stripmnemonics-not-correct#49379</guid>
  </item> 
  <item>
   <title><![CDATA[StripMnemonics not correct : Hi,  Thanks, agree. please replace...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14393&amp;PID=49373&amp;title=stripmnemonics-not-correct#49373</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 14393<br /><strong>Posted:</strong> 27 May 2009 at 2:36am<br /><br />Hi,<DIV>&nbsp;</DIV><DIV>Thanks, agree. please replace it to:</DIV><DIV>&nbsp;</DIV><DIV>void CXTPDrawHelpers::StripMnemonics(CString&amp; strClear)<BR>{<BR>&nbsp;for (int i = 0; i &lt; strClear.GetLength(); i++)<BR>&nbsp;{<BR>&nbsp;&nbsp;if (strClear<em> == _T('&amp;')) // Converts "&amp;&amp;" to "&amp;" and "&amp;&amp;&amp;&amp;" to "&amp;&amp;"<BR>&nbsp;&nbsp;{<BR>&nbsp;&nbsp;&nbsp;DELETE_S(strClear, i);<BR>&nbsp;&nbsp;}<BR>&nbsp;}<BR>}</DIV>]]>
   </description>
   <pubDate>Wed, 27 May 2009 02:36:07 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14393&amp;PID=49373&amp;title=stripmnemonics-not-correct#49373</guid>
  </item> 
  <item>
   <title><![CDATA[StripMnemonics not correct : How to fix?  ]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14393&amp;PID=49368&amp;title=stripmnemonics-not-correct#49368</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4605">zitz</a><br /><strong>Subject:</strong> 14393<br /><strong>Posted:</strong> 27 May 2009 at 2:02am<br /><br />How to fix?]]>
   </description>
   <pubDate>Wed, 27 May 2009 02:02:13 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14393&amp;PID=49368&amp;title=stripmnemonics-not-correct#49368</guid>
  </item> 
  <item>
   <title><![CDATA[StripMnemonics not correct : I use Xtreme ToolkitPro v13.0.0,...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14393&amp;PID=49366&amp;title=stripmnemonics-not-correct#49366</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4605">zitz</a><br /><strong>Subject:</strong> 14393<br /><strong>Posted:</strong> 27 May 2009 at 2:01am<br /><br />I use Xtreme ToolkitPro v13.0.0, static<br><br>error in code:<br><table width="99%"><tr><td><pre class="BBcode"><br>void CXTPDrawHelpers::StripMnemonics(CString&amp; strClear)<br>{<br>&nbsp;&nbsp;&nbsp; for (int i = 0; i &lt; strClear.GetLength(); i++)<br>&nbsp;&nbsp;&nbsp; {<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; if (strClear{i} == _T('&amp;') &amp;&amp; (i == strClear.GetLength() - 1 || strClear{i + 1} != _T('&amp;')))<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; {<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; DELETE_S(strClear, i);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }<br>&nbsp;&nbsp;&nbsp; }<br>}<br></pre></td></tr></table><br><br>At toolbar button i want to see "Capture <strong>&amp;&amp;</strong> string"<br>pButton-&gt;SetCapture( _T("Capture <strong>&amp;&amp;&amp;&amp;</strong> string") )<br>and i got "Capture <strong>&amp;&amp;&amp;</strong> string" :(((]]>
   </description>
   <pubDate>Wed, 27 May 2009 02:01:11 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14393&amp;PID=49366&amp;title=stripmnemonics-not-correct#49366</guid>
  </item> 
 </channel>
</rss>