<?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 : BUG in Handling of mnemonic chars in menu</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Skin Framework : BUG in Handling of mnemonic chars in menu]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Fri, 03 Apr 2026 22:35:49 +0000</pubDate>
  <lastBuildDate>Mon, 12 Aug 2013 13:45: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=19980</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[BUG in Handling of mnemonic chars in menu :  Seems that this has double here...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=19980&amp;PID=71514&amp;title=bug-in-handling-of-mnemonic-chars-in-menu#71514</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=7357">ivpa</a><br /><strong>Subject:</strong> 19980<br /><strong>Posted:</strong> 12 August 2013 at 1:45pm<br /><br />Seems that this has double here : <div><a href="http://forum.codejock.com/forum_posts.asp?TID=21767&amp;PID=71487#71487" rel="nofollow">http://forum.codejock.com/forum_posts.asp?TID=21767&amp;PID=71487#71487</a></div>]]>
   </description>
   <pubDate>Mon, 12 Aug 2013 13:45:31 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=19980&amp;PID=71514&amp;title=bug-in-handling-of-mnemonic-chars-in-menu#71514</guid>
  </item> 
  <item>
   <title><![CDATA[BUG in Handling of mnemonic chars in menu :  Sorry for bumping this post,...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=19980&amp;PID=71466&amp;title=bug-in-handling-of-mnemonic-chars-in-menu#71466</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=798">Insad</a><br /><strong>Subject:</strong> 19980<br /><strong>Posted:</strong> 30 July 2013 at 10:40am<br /><br />Sorry for bumping this post, but might it be possible that someone at CodeJock puts this on a todo list?<div>&nbsp;</div><div>Even in TKP 16.2.3 this isn't fixed yet. So I guess it was lost in the stack of other issues <img src="http://forum.codejock.com/smileys/smiley2.gif" height="17" width="17" border="0" alt="Wink" title="Wink" /></div><div>&nbsp;</div><div>I've tested the solution and it does fix the problem for me too.</div><div>&nbsp;</div><div>It's a small change and even a simple guy can see what's wrong in the original code <img src="http://forum.codejock.com/smileys/smiley32.gif" height="17" width="18" border="0" alt="Clap" title="Clap" /></div><div>&nbsp;</div><div>It is appreciated if this change can find its way to the next release, since I need to change this by hand everytime a release comes out <img src="http://forum.codejock.com/smileys/smiley19.gif" height="17" width="17" border="0" alt="Cry" title="Cry" /></div><div>&nbsp;</div><div>Best regards,</div><div>&nbsp;</div><div>Insad</div><div>&nbsp;</div>]]>
   </description>
   <pubDate>Tue, 30 Jul 2013 10:40:27 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=19980&amp;PID=71466&amp;title=bug-in-handling-of-mnemonic-chars-in-menu#71466</guid>
  </item> 
  <item>
   <title><![CDATA[BUG in Handling of mnemonic chars in menu : Hi All,I have found a small bug...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=19980&amp;PID=68642&amp;title=bug-in-handling-of-mnemonic-chars-in-menu#68642</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=7357">ivpa</a><br /><strong>Subject:</strong> 19980<br /><strong>Posted:</strong> 23 July 2012 at 11:12am<br /><br /><div>Hi All,&nbsp;</div><div>I have found a small bug in handling of skinned menus.</div><div><br></div><div>The mnemonic characters did not work with custom menus.&nbsp;</div><div>So e.g. for menu "File" do not work combination ALT+F, S</div><div>The key ALT+F will open (popup) menu, but the reaction on pressing e.g. "S" is lost.&nbsp;</div><div><br></div><div>In Version 15.2.1 &nbsp;should be fixed function CXTPSkinPopupMenuState::OnChar(...) in file XTPSkinObjectMenu.cpp.&nbsp;</div><div><br></div><div>There in handling of case MNC_SELECT should be corrected range of valid menu items&nbsp;</div><div>to interval &lt;0,pPopuMenu-&gt;GetCount() ).</div><div>&nbsp;</div><div>So simple, there should be changed wrong condition&nbsp;</div><div>&nbsp; &nbsp; from :&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if (nItem &lt; 0 || nItem &lt; pPopupMenu-&gt;GetCount())</div><div>&nbsp; &nbsp; to : &nbsp;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if (nItem &lt; 0 || nItem <b><font color="#ff0000">&gt;=</font></b> pPopupMenu-&gt;GetCount())</div><div><br></div><div>I did not checked if recent version 15.3.1 has the same bug or not.&nbsp;</div><div><br></div><div>With best regards,</div><div>Ivan</div><div><br></div>]]>
   </description>
   <pubDate>Mon, 23 Jul 2012 11:12:29 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=19980&amp;PID=68642&amp;title=bug-in-handling-of-mnemonic-chars-in-menu#68642</guid>
  </item> 
 </channel>
</rss>