<?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 : Vista: CXTPTaskDialog::PreTranslateMessage problem</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Toolkit Pro : Vista: CXTPTaskDialog::PreTranslateMessage problem]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Thu, 11 Jun 2026 01:25:45 +0000</pubDate>
  <lastBuildDate>Fri, 10 Oct 2008 06:28:10 +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=12373</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[Vista: CXTPTaskDialog::PreTranslateMessage problem : :) ok ]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=12373&amp;PID=41866&amp;title=vista-cxtptaskdialogpretranslatemessage-problem#41866</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 12373<br /><strong>Posted:</strong> 10 October 2008 at 6:28am<br /><br />:) ok]]>
   </description>
   <pubDate>Fri, 10 Oct 2008 06:28:10 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=12373&amp;PID=41866&amp;title=vista-cxtptaskdialogpretranslatemessage-problem#41866</guid>
  </item> 
  <item>
   <title><![CDATA[Vista: CXTPTaskDialog::PreTranslateMessage problem : Thanks for your reply. The problem...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=12373&amp;PID=41856&amp;title=vista-cxtptaskdialogpretranslatemessage-problem#41856</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2198">znakeeye</a><br /><strong>Subject:</strong> 12373<br /><strong>Posted:</strong> 10 October 2008 at 3:29am<br /><br />Thanks for your reply. The problem was on our side (I had no access to a Vista machine so I could not debug this immediately).<DIV>&nbsp;</DIV><DIV>Anyway, you should not rely on the return value from GlobalUnlock() in Vista =)</DIV>]]>
   </description>
   <pubDate>Fri, 10 Oct 2008 03:29:34 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=12373&amp;PID=41856&amp;title=vista-cxtptaskdialogpretranslatemessage-problem#41856</guid>
  </item> 
  <item>
   <title><![CDATA[Vista: CXTPTaskDialog::PreTranslateMessage problem : If you set Breakpoint inside first...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=12373&amp;PID=41792&amp;title=vista-cxtptaskdialogpretranslatemessage-problem#41792</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 12373<br /><strong>Posted:</strong> 09 October 2008 at 1:26am<br /><br />If you set Breakpoint inside first 'If' its executed ? if outside ?<DIV></DIV><DIV></DIV>replace<DIV>&nbsp;</DIV><DIV>if (GetKeyState(VK_CONTROL) &amp; 0x8000)</DIV><DIV>to</DIV><DIV>if&nbsp;(GetKeyState(VK_CONTROL) &lt; 0)</DIV>]]>
   </description>
   <pubDate>Thu, 09 Oct 2008 01:26:19 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=12373&amp;PID=41792&amp;title=vista-cxtptaskdialogpretranslatemessage-problem#41792</guid>
  </item> 
  <item>
   <title><![CDATA[Vista: CXTPTaskDialog::PreTranslateMessage problem : CMyTaskDialog dlg; dlg.DoModal(FALSE);  In...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=12373&amp;PID=41768&amp;title=vista-cxtptaskdialogpretranslatemessage-problem#41768</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2198">znakeeye</a><br /><strong>Subject:</strong> 12373<br /><strong>Posted:</strong> 08 October 2008 at 11:31am<br /><br /><DIV>CMyTaskDialog dlg;</DIV><DIV>dlg.DoModal(<strong>FALSE</strong>);</DIV><DIV>&nbsp;</DIV><DIV>In XP, the code below works. In Vista, it does not. What could be wrong?!</DIV><DIV>&nbsp;</DIV><DIV>BOOL CMyTaskDialog::PreTranslateMessage(MSG* pMsg)<BR>{<BR>&nbsp;if (pMsg-&gt;message == WM_KEYDOWN)<BR>&nbsp;{<BR>&nbsp;&nbsp;if (GetKeyState(VK_CONTROL) &amp; 0x8000)<BR>&nbsp;&nbsp;{<BR>&nbsp;&nbsp;&nbsp;// Ctrl+C and Ctrl+Insert should copy the message text to the Clipboard.<BR>&nbsp;&nbsp;&nbsp;if (pMsg-&gt;wParam == 'C' || pMsg-&gt;wParam == VK_INSERT)<BR>&nbsp;&nbsp;&nbsp;{<BR>&nbsp;&nbsp;&nbsp;&nbsp;CopyToClipboard();<BR>&nbsp;&nbsp;&nbsp;}<BR>&nbsp;&nbsp;}<BR>&nbsp;}</DIV><P>&nbsp;return CXTPTaskDialog::PreTranslateMessage(pMsg);<BR>}</P><DIV></DIV>]]>
   </description>
   <pubDate>Wed, 08 Oct 2008 11:31:20 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=12373&amp;PID=41768&amp;title=vista-cxtptaskdialogpretranslatemessage-problem#41768</guid>
  </item> 
 </channel>
</rss>