<?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 : Report Control - Group Rows</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Report Control : Report Control - Group Rows]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Fri, 15 May 2026 17:25:58 +0000</pubDate>
  <lastBuildDate>Fri, 07 Mar 2008 10:40:21 +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=9773</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[Report Control - Group Rows : You might try something like this:...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=9773&amp;PID=32007&amp;title=report-control-group-rows#32007</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=570">nighthawk</a><br /><strong>Subject:</strong> 9773<br /><strong>Posted:</strong> 07 March 2008 at 10:40am<br /><br />You might try something like this:<br><br>&nbsp;&nbsp;&nbsp; Dim i As Long<br>&nbsp;&nbsp;&nbsp; Dim GroupRow As XtremeReportControl.ReportGroupRow<br>&nbsp;&nbsp;&nbsp; Dim ReportRow As XtremeReportControl.ReportRow<br>&nbsp;&nbsp;&nbsp; <br><br>&nbsp;&nbsp;&nbsp; 'loop through report control records<br>&nbsp;&nbsp;&nbsp; i = 0<br>&nbsp;&nbsp;&nbsp; Do While (i &lt; objReportControl.Rows.Count)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If (objReportControl.Rows(i).GroupRow = True) Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'this is a group row so convert it to ReportGroupRow type<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set GroupRow = objReportControl.Rows(i)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MsgBox GroupRow.GroupCaption<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Else<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'this is not a group row so treat it as normal ReportRow type<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set ReportRow = objReportControl.Rows(i)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MsgBox ReportRow.Record.Item(1).Caption<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End If<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; i = i + 1<br>&nbsp;&nbsp;&nbsp; Loop<br><br><br>I haven't actually tested the above code but it is a simplified version of what I use so it should work.<br>]]>
   </description>
   <pubDate>Fri, 07 Mar 2008 10:40:21 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=9773&amp;PID=32007&amp;title=report-control-group-rows#32007</guid>
  </item> 
  <item>
   <title><![CDATA[Report Control - Group Rows : Thanks for your reply, unfortunately...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=9773&amp;PID=31872&amp;title=report-control-group-rows#31872</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3800">Roken</a><br /><strong>Subject:</strong> 9773<br /><strong>Posted:</strong> 04 March 2008 at 4:39am<br /><br />Thanks for your reply, unfortunately I need a visual basic 6 example.<DIV>&nbsp;</DIV><DIV><img src="https://forum.codejock.com/uploads/20080304_043759_GroupRows.jpg" border="0"></DIV><DIV>&nbsp;</DIV><DIV>In order to populate a report in excel I need the contents of&nbsp;the highlighted rows.</DIV>]]>
   </description>
   <pubDate>Tue, 04 Mar 2008 04:39:35 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=9773&amp;PID=31872&amp;title=report-control-group-rows#31872</guid>
  </item> 
  <item>
   <title><![CDATA[Report Control - Group Rows : * example for MS FOXPRO : oSelectd...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=9773&amp;PID=31862&amp;title=report-control-group-rows#31862</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2958">wlcabral</a><br /><strong>Subject:</strong> 9773<br /><strong>Posted:</strong> 03 March 2008 at 9:11pm<br /><br /><p>*&nbsp; example for MS FOXPRO :</p><p>oSelectd = reportControl.SelectedRows</p><p>if oSelectd.Count &gt; 0</p><p>&nbsp;oParent = oSelectd.Row(0).ParentRow<BR>&nbsp;if !isNull(oParent)<BR>&nbsp;&nbsp;if oParent.GroupCaption&nbsp;=true<BR>&nbsp;&nbsp;&nbsp;? oParent.GroupCaption&nbsp;<BR>&nbsp;&nbsp;endif</p><p>&nbsp;endif<BR>endif</p><DIV><!--DX end --><!--DX start ="PropertyAccessDei&#111;n" at="<h4 =dxh4>$$Property_Type$$</h4><p>%%PropertyAccessDescription%%</p>" --></DIV>]]>
   </description>
   <pubDate>Mon, 03 Mar 2008 21:11:03 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=9773&amp;PID=31862&amp;title=report-control-group-rows#31862</guid>
  </item> 
  <item>
   <title><![CDATA[Report Control - Group Rows : Hi there, can someone give me...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=9773&amp;PID=31843&amp;title=report-control-group-rows#31843</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3800">Roken</a><br /><strong>Subject:</strong> 9773<br /><strong>Posted:</strong> 03 March 2008 at 6:53am<br /><br /><P>Hi there, can someone give me the syntax to return the data on a 'Group' row? </P><DIV>I have a grid grouped by "Customer Name"&nbsp;- so my first 'Group' row in the grid reads;</DIV><DIV>&nbsp;</DIV><DIV>"Customer Name:ABC"</DIV><DIV>&nbsp;</DIV><DIV>ABC being the first customer in the list.</DIV><DIV>&nbsp;</DIV><DIV>Thanks in advance</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Mon, 03 Mar 2008 06:53:01 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=9773&amp;PID=31843&amp;title=report-control-group-rows#31843</guid>
  </item> 
 </channel>
</rss>