<?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 : Determining Which Rows are NOT visible</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Report Control : Determining Which Rows are NOT visible]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sat, 16 May 2026 01:29:42 +0000</pubDate>
  <lastBuildDate>Tue, 03 Oct 2006 17:45:45 +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=5207</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[Determining Which Rows are NOT visible : Obviously, you have to iterate...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=5207&amp;PID=16283&amp;title=determining-which-rows-are-not-visible#16283</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=862">sserge</a><br /><strong>Subject:</strong> 5207<br /><strong>Posted:</strong> 03 October 2006 at 5:45pm<br /><br />Obviously, you have to iterate Records, not Rows. Like below:<br><table width="99%"><tr><td><pre class="BBcode"><br>For i = 0 To rpt.Records.count - 1<br>&nbsp;&nbsp;&nbsp;&nbsp; If rpt.Records(i).Visible = False Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; rpt.Records(i).Record.Visible = True<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End If<br>Next i<br></pre></td></tr></table><br><br>If you need to check some value on the corresponding Row, use FindRow method:<br><table width="99%"><tr><td><pre class="BBcode"><br>Dim r As ReportRow<br>... then inside a loop<br>Set r = rpt.Rows.FindRow(rpt.Records(i))<br>If not r is Nothing ' mean if corresponding row exists<br>'' check something<br>End If<br></pre></td></tr></table><br><br>--<br>WBR,<br>Serge<br>]]>
   </description>
   <pubDate>Tue, 03 Oct 2006 17:45:45 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=5207&amp;PID=16283&amp;title=determining-which-rows-are-not-visible#16283</guid>
  </item> 
  <item>
   <title><![CDATA[Determining Which Rows are NOT visible : How would I loop through the rows...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=5207&amp;PID=16277&amp;title=determining-which-rows-are-not-visible#16277</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1790">jcollier</a><br /><strong>Subject:</strong> 5207<br /><strong>Posted:</strong> 03 October 2006 at 4:38pm<br /><br />How would I loop through the rows to set rows that are not visible to visible?<br><br>When I do the following I get Invalid Procedure Call after it gets to the count of visible rows.<br><br>For i = 0 To rpt.Records.count - 1<br>&nbsp;&nbsp;&nbsp;&nbsp; If rpt.Rows(i).GroupRow = False Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; rpt.Rows(i).Record.Visible = True<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End If<br>Next i<br><br>In this case, rpt.records.count = 77.&nbsp; The number of visible rows when I run this is 14.&nbsp; So, when i gets to 14, it gives the error.<br>]]>
   </description>
   <pubDate>Tue, 03 Oct 2006 16:38:05 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=5207&amp;PID=16277&amp;title=determining-which-rows-are-not-visible#16277</guid>
  </item> 
 </channel>
</rss>