<?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 can I set OnLButtonUp for cell?</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Report Control : How can I set OnLButtonUp for cell?]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Fri, 17 Apr 2026 23:52:20 +0000</pubDate>
  <lastBuildDate>Mon, 12 Feb 2007 15:29:04 +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=6047</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 can I set OnLButtonUp for cell? : CXTPReportView is derived from...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=6047&amp;PID=20324&amp;title=how-can-i-set-onlbuttonup-for-cell#20324</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=862">sserge</a><br /><strong>Subject:</strong> 6047<br /><strong>Posted:</strong> 12 February 2007 at 3:29pm<br /><br />CXTPReportView is derived from CView.<br>&nbsp;<br>You have to catch ON_WM_LBUTTONUP() in CXTPReportControl derived class.<br>&nbsp;<br>CXTPReportControl is created as a child window in CXTPReportView and you&nbsp; have no chances to click on CXTPReportView, because this report child window takes all view area <img src="http://forum.codejock.com/smileys/smiley1.gif" border="0" align="middle"><br><br>--<br>WBR,<br>Serge<br>&nbsp;]]>
   </description>
   <pubDate>Mon, 12 Feb 2007 15:29:04 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=6047&amp;PID=20324&amp;title=how-can-i-set-onlbuttonup-for-cell#20324</guid>
  </item> 
  <item>
   <title><![CDATA[How can I set OnLButtonUp for cell? : Hi Serge,I have a class derived...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=6047&amp;PID=20309&amp;title=how-can-i-set-onlbuttonup-for-cell#20309</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2295">TerryT</a><br /><strong>Subject:</strong> 6047<br /><strong>Posted:</strong> 12 February 2007 at 1:03pm<br /><br /><P>Hi Serge,<BR>I have a class derived from CXTPReportView, and get all messages in the map below except for ON_WM_LBUTTONUP()</P><P>I’m attempting to detect a click off of any of the report items so I can remove focus/highlighting of the selected report row – ie, a click on the whitespace below the report items.</P><P>Please advise…<BR>Thank you!</P><P>BEGIN_MESSAGE_MAP(CTaskListView, CXTPReportView)<BR>&nbsp;ON_WM_CREATE()<BR>&nbsp;ON_WM_SIZE()<BR>&nbsp;ON_COMMAND(ID_ADD_TASK, OnAddTask)<BR>&nbsp;ON_COMMAND(ID_REMOVE_TASK, OnRemoveTask)<BR>&nbsp;ON_UPDATE_COMMAND_UI(ID_ADD_TASK, OnUpdateAddTask)<BR>&nbsp;ON_UPDATE_COMMAND_UI(ID_REMOVE_TASK, OnUpdateRemoveTask)<BR>&nbsp;ON_NOTIFY(XTP_NM_REPORT_INPLACEBUTTONDOWN, XTP_ID_REPORT_CONTROL, OnReportButtonClick)<BR>&nbsp;ON_NOTIFY(XTP_NM_REPORT_VALUECHANGED, XTP_ID_REPORT_CONTROL, OnReportValueChanged)<BR>&nbsp;ON_NOTIFY(NM_RCLICK, XTP_ID_REPORT_CONTROL, OnReportItemRClick)<BR>&nbsp;ON_NOTIFY(NM_CLICK, XTP_ID_REPORT_CONTROL, OnReportItemClick)<BR>&nbsp;ON_WM_LBUTTONUP()<BR>END_MESSAGE_MAP()<BR></P>]]>
   </description>
   <pubDate>Mon, 12 Feb 2007 13:03:40 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=6047&amp;PID=20309&amp;title=how-can-i-set-onlbuttonup-for-cell#20309</guid>
  </item> 
  <item>
   <title><![CDATA[How can I set OnLButtonUp for cell? : You can use CXTPReportRow::OnClickOr...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=6047&amp;PID=19206&amp;title=how-can-i-set-onlbuttonup-for-cell#19206</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=862">sserge</a><br /><strong>Subject:</strong> 6047<br /><strong>Posted:</strong> 11 January 2007 at 6:20pm<br /><br />You can use CXTPReportRow::OnClick<br>&nbsp;<br>Or Create derived class and add message handler ON_WM_LBUTTONUP()<br>&nbsp;<br>See Also implementation of CXTPReportControl::OnLButtonUp <br><br>--<br>WBR,<br>Serge<br>]]>
   </description>
   <pubDate>Thu, 11 Jan 2007 18:20:25 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=6047&amp;PID=19206&amp;title=how-can-i-set-onlbuttonup-for-cell#19206</guid>
  </item> 
  <item>
   <title><![CDATA[How can I set OnLButtonUp for cell? :   I derived from CXTPReportControl...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=6047&amp;PID=19054&amp;title=how-can-i-set-onlbuttonup-for-cell#19054</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2663">andrey</a><br /><strong>Subject:</strong> 6047<br /><strong>Posted:</strong> 09 January 2007 at 9:24am<br /><br /><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>I derived from CXTPReportControl and Report Row classes and owerwrote virtual functoins</DIV><FONT size=2><P>CXTPReportControl::CreateRow()</P><DIV></DIV><DIV>and</DIV><FONT size=2><P>CXTPReportRow ::OnLButtonDown</P><DIV></DIV><P>&nbsp;</P><P>But there is no&nbsp;virtual CXTPReportRow ::OnLButtonUp</P><DIV></DIV><DIV></DIV>How can I set OnLButtonUp for a&nbsp;cell, or just for control. Is it possible?</FONT></FONT>]]>
   </description>
   <pubDate>Tue, 09 Jan 2007 09:24:56 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=6047&amp;PID=19054&amp;title=how-can-i-set-onlbuttonup-for-cell#19054</guid>
  </item> 
 </channel>
</rss>