<?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 : Does FindRow find hidden Rows?</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Report Control : Does FindRow find hidden Rows?]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sat, 02 May 2026 00:52:20 +0000</pubDate>
  <lastBuildDate>Wed, 18 Jan 2006 10:25:43 +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=3433</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[Does FindRow find hidden Rows? : Justadd tothe last row:  Set...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=3433&amp;PID=10588&amp;title=does-findrow-find-hidden-rows#10588</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=862">sserge</a><br /><strong>Subject:</strong> 3433<br /><strong>Posted:</strong> 18 January 2006 at 10:25am<br /><br /><P>Just&nbsp;add to&nbsp;the last row:</P><P><strong>&nbsp;&nbsp; Set</strong> RptRow = wndReportControl.Rows.FindRow(record)</P><P>--<BR>WBR,<BR>Serge</P>]]>
   </description>
   <pubDate>Wed, 18 Jan 2006 10:25:43 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=3433&amp;PID=10588&amp;title=does-findrow-find-hidden-rows#10588</guid>
  </item> 
  <item>
   <title><![CDATA[Does FindRow find hidden Rows? : May I know how can use the findRow? I...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=3433&amp;PID=10586&amp;title=does-findrow-find-hidden-rows#10586</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1693">debehs</a><br /><strong>Subject:</strong> 3433<br /><strong>Posted:</strong> 18 January 2006 at 9:58am<br /><br /><P>May I know how can use the findRow?</P><P>I tried this</P><P>&nbsp;&nbsp;&nbsp; Dim record As ReportRecord<BR>&nbsp;&nbsp;&nbsp; Dim RptRow As ReportRow<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; Set record = wndReportControl.Records.Add()<BR>&nbsp;&nbsp;&nbsp; record.AddItem 123<BR>&nbsp;&nbsp;&nbsp; wndReportControl.Populate<BR>&nbsp;&nbsp;&nbsp; RptRow = wndReportControl.Rows.FindRow(record)</P><P>&nbsp;</P><P>but no luck, the code stuck at the last row.</P>]]>
   </description>
   <pubDate>Wed, 18 Jan 2006 09:58:36 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=3433&amp;PID=10586&amp;title=does-findrow-find-hidden-rows#10586</guid>
  </item> 
  <item>
   <title><![CDATA[Does FindRow find hidden Rows? : You can always iterate the collection...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=3433&amp;PID=10325&amp;title=does-findrow-find-hidden-rows#10325</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=862">sserge</a><br /><strong>Subject:</strong> 3433<br /><strong>Posted:</strong> 25 December 2005 at 4:01am<br /><br />You can always iterate the collection of Records, which contain both visible and not, and change Visible property for any of them. After that call Populate to recreate corresponding Rows.<br>]]>
   </description>
   <pubDate>Sun, 25 Dec 2005 04:01:58 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=3433&amp;PID=10325&amp;title=does-findrow-find-hidden-rows#10325</guid>
  </item> 
  <item>
   <title><![CDATA[Does FindRow find hidden Rows? : I don&amp;#039;t see any way to set...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=3433&amp;PID=10322&amp;title=does-findrow-find-hidden-rows#10322</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1549">Shawshank</a><br /><strong>Subject:</strong> 3433<br /><strong>Posted:</strong> 24 December 2005 at 2:53pm<br /><br /><P>I don't see any way to set the Visibile property back to True once you set it to False. There seems to be no way to get a reference to it in order to modify the property back to True. FindRow doesn't get a reference nor does iterating through the Rows collection.</P><P>So how does one do it?</P>]]>
   </description>
   <pubDate>Sat, 24 Dec 2005 14:53:06 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=3433&amp;PID=10322&amp;title=does-findrow-find-hidden-rows#10322</guid>
  </item> 
  <item>
   <title><![CDATA[Does FindRow find hidden Rows? : Hi,Actually this behavior is correct....]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=3433&amp;PID=10321&amp;title=does-findrow-find-hidden-rows#10321</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=862">sserge</a><br /><strong>Subject:</strong> 3433<br /><strong>Posted:</strong> 24 December 2005 at 11:20am<br /><br />Hi,<br><br>Actually this behavior is correct. Please note the difference before and&nbsp; after calling Populate() method. When you set Visibility of the Record to True and call Populate(), it creates a corresponding Row, but when Visibility is False, a corresponding Row is not created at all. That&#8217;s why FindRow() can not find it. <br><br>So, if you first set Visible to True, then call Populate(), and finally call&nbsp;&nbsp; FindRow() &#8211; it will be found. <br><br>--<br>HTH,<br>Serge<br>]]>
   </description>
   <pubDate>Sat, 24 Dec 2005 11:20:03 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=3433&amp;PID=10321&amp;title=does-findrow-find-hidden-rows#10321</guid>
  </item> 
  <item>
   <title><![CDATA[Does FindRow find hidden Rows? : I have a Record whose visible...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=3433&amp;PID=10301&amp;title=does-findrow-find-hidden-rows#10301</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1549">Shawshank</a><br /><strong>Subject:</strong> 3433<br /><strong>Posted:</strong> 22 December 2005 at 12:26am<br /><br /><P>I have a Record whose visible property is set to False. If I use the .FindRow method to locate the Row this hidden Record is associated with it fails to locate it. I tried setting the Record's visible property to True before calling .FindRow&nbsp;but for some reason it remains False.</P><P>Should&nbsp;.FindRow be able to locate a Row when the Record's visible property is set to False?</P>]]>
   </description>
   <pubDate>Thu, 22 Dec 2005 00:26:55 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=3433&amp;PID=10301&amp;title=does-findrow-find-hidden-rows#10301</guid>
  </item> 
 </channel>
</rss>