<?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 : How to receive the XTPWM_PROPERTYGRID_NOTIFY msg?</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Toolkit Pro : How to receive the XTPWM_PROPERTYGRID_NOTIFY msg?]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sat, 13 Jun 2026 03:57:52 +0000</pubDate>
  <lastBuildDate>Sun, 09 Dec 2007 06:31:51 +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=9044</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[How to receive the XTPWM_PROPERTYGRID_NOTIFY msg? :  Oh yeah!Thanks a lot for your...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=9044&amp;PID=29288&amp;title=how-to-receive-the-xtpwm-propertygrid-notify-msg#29288</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3569">long3737</a><br /><strong>Subject:</strong> 9044<br /><strong>Posted:</strong> 09 December 2007 at 6:31am<br /><br />Oh yeah!<br>Thanks a lot for your help!<br>]]>
   </description>
   <pubDate>Sun, 09 Dec 2007 06:31:51 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=9044&amp;PID=29288&amp;title=how-to-receive-the-xtpwm-propertygrid-notify-msg#29288</guid>
  </item> 
  <item>
   <title><![CDATA[How to receive the XTPWM_PROPERTYGRID_NOTIFY msg? : CXTPPropertyGridi sends message...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=9044&amp;PID=29285&amp;title=how-to-receive-the-xtpwm-propertygrid-notify-msg#29285</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 9044<br /><strong>Posted:</strong> 09 December 2007 at 4:17am<br /><br />CXTPPropertyGridi sends message to parent. not to self.<DIV></DIV><DIV>If you need handle message in grid, override</DIV><DIV>&nbsp;</DIV><DIV>LRESULT CXTPPropertyGrid::SendNotifyMessage(WPARAM wParam /*= 0*/, LPARAM lParam /*= 0*/)<BR>message.</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>LRESULT EnvironmentPane::SendNotifyMessage(WPARAM wParam, LPARAM lParam)<BR>{<BR>&nbsp;&nbsp;&nbsp; TRACE("OnGridNotify");<BR>&nbsp;&nbsp;&nbsp; return 0;<BR>}<BR></DIV>]]>
   </description>
   <pubDate>Sun, 09 Dec 2007 04:17:18 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=9044&amp;PID=29285&amp;title=how-to-receive-the-xtpwm-propertygrid-notify-msg#29285</guid>
  </item> 
  <item>
   <title><![CDATA[How to receive the XTPWM_PROPERTYGRID_NOTIFY msg? : I&amp;#039;m sorry that I haven&amp;#039;t...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=9044&amp;PID=29278&amp;title=how-to-receive-the-xtpwm-propertygrid-notify-msg#29278</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3569">long3737</a><br /><strong>Subject:</strong> 9044<br /><strong>Posted:</strong> 08 December 2007 at 9:33pm<br /><br />I'm sorry that I haven't expressed it clearly. <br><br>my code like this:<br>//ToolPane.h<br>class ToolPane : public CXTPPropertyGrid<br>{<br>&nbsp;&nbsp;&nbsp; ……<br>&nbsp;&nbsp;&nbsp; afx_msg LRESULT OnGridNotify(WPARAM, LPARAM);<br>&nbsp;&nbsp;&nbsp; DECLARE_MESSAGE_MAP()<br>}<br><br>//ToolPane.cpp<br>//message map<br>BEGIN_MESSAGE_MAP(ToolPane, CXTPPropertyGrid)<br>&nbsp;&nbsp;&nbsp; ……<br>&nbsp;&nbsp;&nbsp; ON_MESSAGE(XTPWM_PROPERTYGRID_NOTIFY, OnGridNotify)<br>END_MESSAGE_MAP()<br><br>LRESULT EnvironmentPane::OnGridNotify(WPARAM wParam, LPARAM lParam)<br>{<br>&nbsp;&nbsp;&nbsp; TRACE("OnGridNotify");<br>&nbsp;&nbsp;&nbsp; return 0;<br>}<br><br>OnGridNotify doesn't work.<br><br>By the way,this pane is a child window of a CXTPTabControl window.<br>]]>
   </description>
   <pubDate>Sat, 08 Dec 2007 21:33:19 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=9044&amp;PID=29278&amp;title=how-to-receive-the-xtpwm-propertygrid-notify-msg#29278</guid>
  </item> 
  <item>
   <title><![CDATA[How to receive the XTPWM_PROPERTYGRID_NOTIFY msg? : what doesn&amp;#039;t work. where...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=9044&amp;PID=29273&amp;title=how-to-receive-the-xtpwm-propertygrid-notify-msg#29273</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 9044<br /><strong>Posted:</strong> 08 December 2007 at 1:48pm<br /><br />what doesn't work. where you catch it. ]]>
   </description>
   <pubDate>Sat, 08 Dec 2007 13:48:09 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=9044&amp;PID=29273&amp;title=how-to-receive-the-xtpwm-propertygrid-notify-msg#29273</guid>
  </item> 
  <item>
   <title><![CDATA[How to receive the XTPWM_PROPERTYGRID_NOTIFY msg? : Hello!  I attempt to receivethe...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=9044&amp;PID=29263&amp;title=how-to-receive-the-xtpwm-propertygrid-notify-msg#29263</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3569">long3737</a><br /><strong>Subject:</strong> 9044<br /><strong>Posted:</strong> 08 December 2007 at 4:27am<br /><br />Hello!<DIV>&nbsp;</DIV><DIV>I attempt to receive&nbsp;the XTPWM_PROPERTYGRID_NOTIFY message and map it to the OnGridNotify function like \Samples\PropertyGrid\GridSample in my class, which inherit from CXTPPropertyGrid,but it&nbsp;doesn't work.</DIV><DIV>&nbsp;</DIV><DIV>Thanks</DIV>]]>
   </description>
   <pubDate>Sat, 08 Dec 2007 04:27:45 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=9044&amp;PID=29263&amp;title=how-to-receive-the-xtpwm-propertygrid-notify-msg#29263</guid>
  </item> 
 </channel>
</rss>