<?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 : CXTPReportC&#111;ntrol group capti&#111;n</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Toolkit Pro : CXTPReportC&#111;ntrol group capti&#111;n]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 20 Apr 2026 22:32:31 +0000</pubDate>
  <lastBuildDate>Thu, 10 Mar 2005 21:03:28 +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=1919</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[CXTPReportC&#111;ntrol group capti&#111;n : Thanks to you both, I&amp;#039;ve...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1919&amp;PID=5678&amp;title=cxtpreportcontrol-group-caption#5678</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=669">markr</a><br /><strong>Subject:</strong> 1919<br /><strong>Posted:</strong> 10 March 2005 at 9:03pm<br /><br />Thanks to you both, I've got it working now.<br><br>Excellent product, and thanks for your prompt support.<br><br>]]>
   </description>
   <pubDate>Thu, 10 Mar 2005 21:03:28 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1919&amp;PID=5678&amp;title=cxtpreportcontrol-group-caption#5678</guid>
  </item> 
  <item>
   <title><![CDATA[CXTPReportC&#111;ntrol group capti&#111;n : markr, seems you have old version,...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1919&amp;PID=5645&amp;title=cxtpreportcontrol-group-caption#5645</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 1919<br /><strong>Posted:</strong> 10 March 2005 at 9:09am<br /><br /><P><SPAN =bold>markr, seems you have old version, check parameters of </SPAN></P><P><SPAN =bold>GetGroupCaption in source.</SPAN></P>]]>
   </description>
   <pubDate>Thu, 10 Mar 2005 09:09:20 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1919&amp;PID=5645&amp;title=cxtpreportcontrol-group-caption#5645</guid>
  </item> 
  <item>
   <title><![CDATA[CXTPReportC&#111;ntrol group capti&#111;n : Mark,  It&amp;#039;s strange -- your...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1919&amp;PID=5625&amp;title=cxtpreportcontrol-group-caption#5625</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=862">sserge</a><br /><strong>Subject:</strong> 1919<br /><strong>Posted:</strong> 08 March 2005 at 11:30am<br /><br />Mark,<br /><br />It's strange -- your example actually works fine for me and returns test string when grouping by the associated column.<br /><br />Try adding grouping somewhere inside Report Control initializing:<br /><br />(like in the sample application)<br /><br />// Find your column associated with this Record Item<br />CXTPReportColumn* pColSize =  pReportCtrl-&gt;GetColumns()-&gt;Find(COLUMN_YOUR_SIZE);&nbs p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />// Clear all other grouping<br /> pReportCtrl-&gt;GetColumns()-&gt;GetGroupsOrder()-&gt;Clear( );<br />// Group report control by the found column<br /> pReportCtrl-&gt;GetColumns()-&gt;GetGroupsOrder()-&gt;Add(pC olSize);<br /><br />--<br />Regards,<br />Sergey]]>
   </description>
   <pubDate>Tue, 08 Mar 2005 11:30:24 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1919&amp;PID=5625&amp;title=cxtpreportcontrol-group-caption#5625</guid>
  </item> 
  <item>
   <title><![CDATA[CXTPReportC&#111;ntrol group capti&#111;n : Hi Sergey,  Thanks very much...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1919&amp;PID=5597&amp;title=cxtpreportcontrol-group-caption#5597</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=669">markr</a><br /><strong>Subject:</strong> 1919<br /><strong>Posted:</strong> 07 March 2005 at 6:10pm<br /><br />Hi Sergey,<br><br>Thanks very much for your prompt reply. I must be overlooking somethingobvious. I'll post a quick code snippet here and risk publicembarrasment.&nbsp; :-)<br><br>Here's the class definition:<br><br>class CDupReportRecordSize : public CXTPReportRecordItem<br>{<br>public:<br>&nbsp;&nbsp;&nbsp; CDupReportRecordSize(__int64 nSize = 0);<br>&nbsp;&nbsp;&nbsp; CString GetCaption();<br>&nbsp;&nbsp;&nbsp; CString GetGroupCaption(CXTPReportColumn* pColumn);<br>protected:<br>&nbsp;&nbsp;&nbsp; __int64 m_nSize;<br>};<br><br>And the (relevant part of the) implementation:<br><br>CString CDupReportRecordSize::GetGroupCaption(CXTPReportColumn* pColumn)<br>{<br>&nbsp;&nbsp;&nbsp; return "test";<br>}<br><br>What's interesting is that the implementation for the GetCaption()override works fine - by which I mean that it actually fires. But theGetGroupCaption function never does (I can set a breakpoint and I getnothing).<br><br>- Mark R.<br><br>]]>
   </description>
   <pubDate>Mon, 07 Mar 2005 18:10:29 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1919&amp;PID=5597&amp;title=cxtpreportcontrol-group-caption#5597</guid>
  </item> 
  <item>
   <title><![CDATA[CXTPReportC&#111;ntrol group capti&#111;n : Hi Mark,  Take a look at the sample...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1919&amp;PID=5580&amp;title=cxtpreportcontrol-group-caption#5580</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=862">sserge</a><br /><strong>Subject:</strong> 1919<br /><strong>Posted:</strong> 07 March 2005 at 2:27am<br /><br />Hi Mark,<br /><br />Take a look at the sample application -- there are a number of working examples like following:<br /><br />class CMessageRecordItemXXX : public CXTPReportRecordItemYYY<br />{<br />...<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;virtual CString GetGroupCaption(CXTPReportColumn* pColumn);<br />...<br />}<br /><br />There must be some another problem in your code if such overriding is not working...<br /><br />I'd probably say more about that if you list a piece of your code.<br /><br />--<br />Best regards,<br />Sergey]]>
   </description>
   <pubDate>Mon, 07 Mar 2005 02:27:22 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1919&amp;PID=5580&amp;title=cxtpreportcontrol-group-caption#5580</guid>
  </item> 
  <item>
   <title><![CDATA[CXTPReportC&#111;ntrol group capti&#111;n : Can anyone provide me with a code...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1919&amp;PID=5572&amp;title=cxtpreportcontrol-group-caption#5572</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=669">markr</a><br /><strong>Subject:</strong> 1919<br /><strong>Posted:</strong> 06 March 2005 at 9:46am<br /><br />Can anyone provide me with a code example of how to create a custom CXTPReportControl group caption? I'm running XTP v9.51.<br><br>I've tried over-riding GetGroupCaption(CXTPReportColumn* pColumn) in myCXTPReportRecordItem subclass, but it never seems to fire.<br><br>Any help would be greatly appreciated.<br><br>- Mark R.<br><br>]]>
   </description>
   <pubDate>Sun, 06 Mar 2005 09:46:50 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1919&amp;PID=5572&amp;title=cxtpreportcontrol-group-caption#5572</guid>
  </item> 
 </channel>
</rss>