<?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 : Click &#101;vent of CXTPReportC&#111;ntrol</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Toolkit Pro : Click &#101;vent of CXTPReportC&#111;ntrol]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Fri, 12 Jun 2026 02:43:05 +0000</pubDate>
  <lastBuildDate>Tue, 02 May 2006 14:41:13 +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=4082</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[Click &#101;vent of CXTPReportC&#111;ntrol : Hi Serge Thanks a lot for your...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4082&amp;PID=12587&amp;title=click-event-of-cxtpreportcontrol#12587</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1964">Suyambu2002</a><br /><strong>Subject:</strong> 4082<br /><strong>Posted:</strong> 02 May 2006 at 2:41pm<br /><br /><P>Hi Serge</P><P>Thanks a lot for your reply.</P><P>Click event would not help me.</P><P>As I told earlier, I would like to set some default value if the user is not selecting anything from the combo box.</P><P>When I select some row on the second column, "Click-Here-To-Map" will be highlighted as if the user is going to edit it.&nbsp;&nbsp; Now when I press delete button the data will be blank in the column.&nbsp; Assume I am going to someother row, now what should happen is the previous column should fill up with "Click-Here-To-Map", since the user has not entered anything.</P><P>Any assitance would be helpfull.</P>]]>
   </description>
   <pubDate>Tue, 02 May 2006 14:41:13 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4082&amp;PID=12587&amp;title=click-event-of-cxtpreportcontrol#12587</guid>
  </item> 
  <item>
   <title><![CDATA[Click &#101;vent of CXTPReportC&#111;ntrol :  Hi,What&amp;#039;s a problem with...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4082&amp;PID=12511&amp;title=click-event-of-cxtpreportcontrol#12511</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=862">sserge</a><br /><strong>Subject:</strong> 4082<br /><strong>Posted:</strong> 28 April 2006 at 3:59pm<br /><br />Hi,<br><br>What's a problem with handling XTP_ID_REPORT_CONTROL notification?<br><table width="99%"><tr><td><pre class="BBcode"><br>ON_NOTIFY(NM_CLICK, XTP_ID_REPORT_CONTROL, OnReportItemClick)<br>....<br><br>void CYourView::OnReportItemClick(NMHDR * pNotifyStruct, LRESULT * /*result*/)<br>{<br>&nbsp;&nbsp;&nbsp; XTP_NM_REPORTRECORDITEM* pItemNotify = (XTP_NM_REPORTRECORDITEM*) pNotifyStruct;<br>&nbsp;&nbsp;&nbsp; <br>....<br>}<br></pre></td></tr></table><br><br>--<br>WBR,<br>Serge<br>]]>
   </description>
   <pubDate>Fri, 28 Apr 2006 15:59:48 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4082&amp;PID=12511&amp;title=click-event-of-cxtpreportcontrol#12511</guid>
  </item> 
  <item>
   <title><![CDATA[Click &#101;vent of CXTPReportC&#111;ntrol : Hello All Am using CXTPReportControl...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4082&amp;PID=12492&amp;title=click-event-of-cxtpreportcontrol#12492</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1964">Suyambu2002</a><br /><strong>Subject:</strong> 4082<br /><strong>Posted:</strong> 28 April 2006 at 1:13am<br /><br /><P>Hello All</P><P>Am using CXTPReportControl as follows...</P><P>&nbsp;m_xtReport.ModifyStyle ( NULL, WS_CLIPCHILDREN | WS_CLIPSIBLINGS | WS_TABSTOP );<BR>&nbsp;&nbsp;m_xtReport.GetReportHeader ( )-&gt;AllowColumnRemove ( FALSE );<BR>&nbsp;&nbsp;m_xtReport.GetReportHeader ( )-&gt;AllowColumnReorder ( FALSE );<BR>&nbsp;&nbsp;m_xtReport.GetReportHeader ( )-&gt;AllowColumnSort ( TRUE );<BR>&nbsp;&nbsp;<BR>&nbsp;&nbsp;//m_xtReport.GetReportHeader ( )-&gt;SetAutoColumnSizing ( FALSE );<BR>&nbsp;&nbsp;m_xtReport.EnableScrollBar ( SB_HORZ, TRUE );<BR>&nbsp;&nbsp;<BR>&nbsp;&nbsp;CXTPReportColumn* pFieldColumn = m_xtReport.AddColumn ( new CXTPReportColumn ( IDN_SELECT_FIELD_NAME, SELECT_FIELD, 200 ) );<BR>&nbsp;&nbsp;CXTPReportColumn* pValueColumn = m_xtReport.AddColumn ( new CXTPReportColumn ( IDN_ENTER_DEFAULT_VALUES, ENTER_DEFAULT_VALUE, 200 ) );<BR>&nbsp;&nbsp;<BR>&nbsp;&nbsp;if ( pFieldColumn )<BR>&nbsp;&nbsp;{<BR>&nbsp;&nbsp;&nbsp;pFieldColumn-&gt;GetEditOptions ( )-&gt;m_bAllowEdit = FALSE;<BR>&nbsp;&nbsp;}<BR>&nbsp;&nbsp;<BR>&nbsp;&nbsp;if ( pValueColumn )<BR>&nbsp;&nbsp;{<BR>&nbsp;&nbsp;&nbsp;for ( iIter = 0; iIter &lt; _countof ( szRGUserFieldsArr ); iIter++ )<BR>&nbsp;&nbsp;&nbsp;{<BR>&nbsp;&nbsp;&nbsp;&nbsp;pValueColumn-&gt;GetEditOptions ( )-&gt;AddConstraint ( _T ( szRGUserFieldsArr&#091;iIter&#093; ), iIter );<BR>&nbsp;&nbsp;&nbsp;}<BR>&nbsp;&nbsp;&nbsp;pValueColumn-&gt;GetEditOptions ( )-&gt;m_bConstraintEdit = FALSE;<BR>&nbsp;&nbsp;&nbsp;pValueColumn-&gt;GetEditOptions ( )-&gt;m_bAllowEdit = TRUE;<BR>&nbsp;&nbsp;&nbsp;pValueColumn-&gt;GetEditOptions ( )-&gt;m_bSelectTextOnEdit = TRUE;<BR>&nbsp;&nbsp;&nbsp;pValueColumn-&gt;GetEditOptions ( )-&gt;m_nMaxLength = MAX_TEXT_RANGE;<BR>&nbsp;&nbsp;&nbsp;pValueColumn-&gt;GetEditOptions ( )-&gt;AddComboButton ( );<BR>&nbsp;&nbsp;}</P><P>&nbsp;</P><P>Now report control will two columns column one non editable and column two editable with combo box.&nbsp; By default all the column two data will be "Click-Here-To-Map".&nbsp; When I select some row on the second column, "Click-Here-To-Map" will be highlighted as if the user is going to edit it.&nbsp;&nbsp; Now when I press delete button the data will be blank in the column.&nbsp; Assume I am going to someother row, now what should happen is the previous column should fill up with "Click-Here-To-Map", since the user has not entered anything.</P><P>How to get the click event on the report control???</P><P>&nbsp;</P>]]>
   </description>
   <pubDate>Fri, 28 Apr 2006 01:13:19 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4082&amp;PID=12492&amp;title=click-event-of-cxtpreportcontrol#12492</guid>
  </item> 
 </channel>
</rss>