<?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 : Selecting Report Row</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Suite Pro : Selecting Report Row]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 27 May 2026 16:29:06 +0000</pubDate>
  <lastBuildDate>Thu, 17 Mar 2005 09:32:42 +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=1964</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[Selecting Report Row : Thanks SuperMario. Will put on...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1964&amp;PID=5780&amp;title=selecting-report-row#5780</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=884">DDJJ</a><br /><strong>Subject:</strong> 1964<br /><strong>Posted:</strong> 17 March 2005 at 9:32am<br /><br />Thanks SuperMario.&nbsp; Will put on my to do list!]]>
   </description>
   <pubDate>Thu, 17 Mar 2005 09:32:42 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1964&amp;PID=5780&amp;title=selecting-report-row#5780</guid>
  </item> 
  <item>
   <title><![CDATA[Selecting Report Row : I don&amp;#039;t see an obvious answer...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1964&amp;PID=5778&amp;title=selecting-report-row#5778</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=369">SuperMario</a><br /><strong>Subject:</strong> 1964<br /><strong>Posted:</strong> 17 March 2005 at 9:25am<br /><br />I don't see an obvious answer for this.&nbsp; Mabye send in a feature request for a ReportRecords.Find method or similar.]]>
   </description>
   <pubDate>Thu, 17 Mar 2005 09:25:34 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1964&amp;PID=5778&amp;title=selecting-report-row#5778</guid>
  </item> 
  <item>
   <title><![CDATA[Selecting Report Row : So I will assume there is no way...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1964&amp;PID=5775&amp;title=selecting-report-row#5775</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=884">DDJJ</a><br /><strong>Subject:</strong> 1964<br /><strong>Posted:</strong> 17 March 2005 at 8:59am<br /><br />So I will assume there is no way to set the "FocusedRow" based upon some unique ID without first have to iterate through the Rows collection, correct?]]>
   </description>
   <pubDate>Thu, 17 Mar 2005 08:59:51 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1964&amp;PID=5775&amp;title=selecting-report-row#5775</guid>
  </item> 
  <item>
   <title><![CDATA[Selecting Report Row : What I&amp;#039;m doing now seems...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1964&amp;PID=5727&amp;title=selecting-report-row#5727</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=884">DDJJ</a><br /><strong>Subject:</strong> 1964<br /><strong>Posted:</strong> 14 March 2005 at 3:13pm<br /><br /><P>What I'm doing now seems kind of inefficient:</P><P>Dim oRow As ReportRow<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; With objReport<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; For Each oRow In .Rows<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; If Not oRow.GroupRow Then<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If oRow.Record.Tag = lItemID Then<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .FocusedRow = oRow<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Exit For<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End If<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; End If<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Next<BR>&nbsp;&nbsp;&nbsp; End With</P><P>Would rather see something along the lines of:</P><P>objReport.FocusedRow = objReport.Rows.Selected.Tag(lItemID)</P><P>or something similar...</P>]]>
   </description>
   <pubDate>Mon, 14 Mar 2005 15:13:15 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1964&amp;PID=5727&amp;title=selecting-report-row#5727</guid>
  </item> 
  <item>
   <title><![CDATA[Selecting Report Row : Hmm, after thinking this through,...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1964&amp;PID=5726&amp;title=selecting-report-row#5726</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=369">SuperMario</a><br /><strong>Subject:</strong> 1964<br /><strong>Posted:</strong> 14 March 2005 at 2:47pm<br /><br />Hmm, after thinking this through, this solution would only work if the other row you want to focus is currently visible.<br>]]>
   </description>
   <pubDate>Mon, 14 Mar 2005 14:47:28 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1964&amp;PID=5726&amp;title=selecting-report-row#5726</guid>
  </item> 
  <item>
   <title><![CDATA[Selecting Report Row : I don&amp;#039;t think I understand...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1964&amp;PID=5721&amp;title=selecting-report-row#5721</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=884">DDJJ</a><br /><strong>Subject:</strong> 1964<br /><strong>Posted:</strong> 14 March 2005 at 1:35pm<br /><br /><P>I don't think I understand your response, or maybe my question is vague.</P><P>Say our user already has a report drawn on their screen with 100 records/rows.&nbsp; Assume the user takes some other action which requires that the FocusedRow in the report control be moved to a different record/row on the report. The BeforeDrawRow event is not called under these circumstances, correct?</P><P>Thanks!</P>]]>
   </description>
   <pubDate>Mon, 14 Mar 2005 13:35:35 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1964&amp;PID=5721&amp;title=selecting-report-row#5721</guid>
  </item> 
  <item>
   <title><![CDATA[Selecting Report Row : You can try to use BeforeDrawRow...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1964&amp;PID=5720&amp;title=selecting-report-row#5720</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=369">SuperMario</a><br /><strong>Subject:</strong> 1964<br /><strong>Posted:</strong> 14 March 2005 at 1:16pm<br /><br />You can try to use BeforeDrawRow to check the row to see if it is theone you are looking for.&nbsp; This way you are checking for your rowas the before the row is being drawn.&nbsp; You won't have to manuallyiterate through the rows.<br>]]>
   </description>
   <pubDate>Mon, 14 Mar 2005 13:16:58 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1964&amp;PID=5720&amp;title=selecting-report-row#5720</guid>
  </item> 
  <item>
   <title><![CDATA[Selecting Report Row : Besed upon user input, we want...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1964&amp;PID=5719&amp;title=selecting-report-row#5719</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=884">DDJJ</a><br /><strong>Subject:</strong> 1964<br /><strong>Posted:</strong> 14 March 2005 at 1:09pm<br /><br /><P>Besed upon user input, we want to select a particlar report row for focus in code.&nbsp; Currently, we are iterating through the Rows collection to find and select the report row.&nbsp; On larger reports, this can be time consuming.</P><P>Is there a way to set the focus on a row via using some kind of unique identifier for each row/record?</P><P>Dan</P>]]>
   </description>
   <pubDate>Mon, 14 Mar 2005 13:09:37 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1964&amp;PID=5719&amp;title=selecting-report-row#5719</guid>
  </item> 
 </channel>
</rss>