<?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 : how find row?</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Report Control : how find row?]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Fri, 15 May 2026 15:27:56 +0000</pubDate>
  <lastBuildDate>Thu, 10 Jul 2008 07:52:39 +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=11144</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[how find row? : It&amp;#039;s very simple:  dim...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=11144&amp;PID=38124&amp;title=how-find-row#38124</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2531">Baldur</a><br /><strong>Subject:</strong> 11144<br /><strong>Posted:</strong> 10 July 2008 at 7:52am<br /><br />It's very simple:<DIV>&nbsp;</DIV><DIV>dim xReportRow as ReportRow</DIV><DIV>dim xMyTag as variant</DIV><DIV>&nbsp;</DIV><DIV>for each xReportRow in ReportControl.rows</DIV><DIV>&nbsp; if xReportRow.Record.Tag =&nbsp;xMytag then</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp; ReportControl.FocusedRow = xReportRow</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp; exit for</DIV><DIV>&nbsp; end if</DIV><DIV>next</DIV><DIV>&nbsp;</DIV><DIV>The same can do with each property.</DIV>]]>
   </description>
   <pubDate>Thu, 10 Jul 2008 07:52:39 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=11144&amp;PID=38124&amp;title=how-find-row#38124</guid>
  </item> 
  <item>
   <title><![CDATA[how find row? : Hi,  Here&amp;#039;s s test project....]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=11144&amp;PID=37243&amp;title=how-find-row#37243</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3701">Aaron</a><br /><strong>Subject:</strong> 11144<br /><strong>Posted:</strong> 23 June 2008 at 8:51am<br /><br />Hi,<DIV>&nbsp;</DIV><DIV>Here's s test project. Copy your database in the same directory as the project and&nbsp;change the database and table name in the form load event.&nbsp;Data will be loaded and you can change the&nbsp;items as you wish and are updated in the database!!! So don't use your original database <img src="https://forum.codejock.com/smileys/smiley2.gif" border="0"></DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV><a href="https://forum.codejock.com/uploads/20080623_085013_TestReportC&#111;ntr.zip" target="_blank">uploads/20080623_085013_TestReportContr.zip</A></DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>Good luck !</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Mon, 23 Jun 2008 08:51:58 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=11144&amp;PID=37243&amp;title=how-find-row#37243</guid>
  </item> 
  <item>
   <title><![CDATA[how find row? :  hi example , i want add this...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=11144&amp;PID=37234&amp;title=how-find-row#37234</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4045">mozaheb</a><br /><strong>Subject:</strong> 11144<br /><strong>Posted:</strong> 23 June 2008 at 7:47am<br /><br />hi <br><br>example , i want add this option for user to select checkmark for show number o same name for each contact if find name in database...<br><br>now if found number replace number with contact name, and i want replace record in RC in a few second.<br><br>my data base : access (MDB)<br><br><br>example source :<br><br>Sub Refresh_Inbox()<br>&nbsp;&nbsp;&nbsp; Dim DataInbox As ClsDataBase<br><br>&nbsp;&nbsp;&nbsp; Set DataInbox = New ClsDataBase<br><br>&nbsp;&nbsp;&nbsp; LstInbox.Records.DeleteAll<br>&nbsp;&nbsp;&nbsp; LstInbox.Populate<br><br>&nbsp;&nbsp;&nbsp; Call DataInbox.Get_AllRecivedSMS(SMSReciveRecords, PCon)<br><br><br>&nbsp;&nbsp;&nbsp; While Not ContactsRecords.EOF<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Call AddRecordList(ContactsRecords!ID, ContactsRecords!Active, ContactsRecords!Name, ContactsRecords!MobileNum, ContactsRecords!GroupName, ContactsRecords!Field1, ContactsRecords!Field2, ContactsRecords!Field3, ContactsRecords!Field4, ContactsRecords!LastSend, ContactsRecords!SmsCount)<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ContactsRecords.MoveNext<br><br>&nbsp;&nbsp;&nbsp; Wend<br><br>&nbsp;&nbsp;&nbsp; 'Updates the Report<br>&nbsp;&nbsp;&nbsp; LstInbox.Populate<br>&nbsp;&nbsp;&nbsp; LstInbox.FocusSubItems = False<br><br><br>End Sub<br><br>thank you<br>]]>
   </description>
   <pubDate>Mon, 23 Jun 2008 07:47:25 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=11144&amp;PID=37234&amp;title=how-find-row#37234</guid>
  </item> 
  <item>
   <title><![CDATA[how find row? : Hi,  Virtual mode is like you...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=11144&amp;PID=37231&amp;title=how-find-row#37231</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3701">Aaron</a><br /><strong>Subject:</strong> 11144<br /><strong>Posted:</strong> 23 June 2008 at 7:27am<br /><br />Hi,<DIV>&nbsp;</DIV><DIV>Virtual mode is like you would open your table (in my case MS Access). The recordset is loaded into ReportControl using the BeforeDrawRow event</DIV><DIV>&nbsp;</DIV><DIV>first row will be the first row in ReportControl</DIV><DIV>second row will be the second row in ReportControl and so on</DIV><DIV>&nbsp;</DIV><DIV>If you load the recordset of database as records you will have the same as with virtual records (my sample)</DIV><DIV>&nbsp;</DIV><DIV>Show me how you load the records from the database? I want to help you but I don't know: what database you use? how you load records? As I said before upload a sample project and I will help you.&nbsp;If you don't want me to see the data in the database make a sample&nbsp;with some dummy data. As long the columns are the same as yours so it isn't to difficult to change it for your needs.</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Mon, 23 Jun 2008 07:27:54 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=11144&amp;PID=37231&amp;title=how-find-row#37231</guid>
  </item> 
  <item>
   <title><![CDATA[how find row? : hi again, thank you buti dont...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=11144&amp;PID=37214&amp;title=how-find-row#37214</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4045">mozaheb</a><br /><strong>Subject:</strong> 11144<br /><strong>Posted:</strong> 23 June 2008 at 5:42am<br /><br />hi again, thank you <br><br>but<br><br>i dont use virtual mode...<br><br>please guide me<br>]]>
   </description>
   <pubDate>Mon, 23 Jun 2008 05:42:12 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=11144&amp;PID=37214&amp;title=how-find-row#37214</guid>
  </item> 
  <item>
   <title><![CDATA[how find row? : Hi,  Ok,  There are other...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=11144&amp;PID=37210&amp;title=how-find-row#37210</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3701">Aaron</a><br /><strong>Subject:</strong> 11144<br /><strong>Posted:</strong> 23 June 2008 at 5:33am<br /><br />Hi,<DIV>&nbsp;</DIV><DIV>Ok,</DIV><DIV>&nbsp;</DIV><DIV>There are other ways of doing this but than I have to know how you load the database records and how your table looks. </DIV><DIV>&nbsp;</DIV><DIV>Maybe you could check this post:</DIV><DIV>&nbsp;</DIV><DIV><a href="http://forum.codejock.com/forum_posts.asp?TID=10814" target="_blank">http://forum.codejock.com/forum_posts.asp?TID=10814</A></DIV><DIV>&nbsp;</DIV><DIV>and look for sample:</DIV><DIV>&nbsp;</DIV><DIV><DIV><U><FONT color=#990099>uploads/20080602_072905_ReportVirtualDa.zip</FONT></U></DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>This will load a recordset into a RC in <strong>virtual list mode</strong> and you can edit items and will be immediately updated in database.</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV></DIV>]]>
   </description>
   <pubDate>Mon, 23 Jun 2008 05:33:37 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=11144&amp;PID=37210&amp;title=how-find-row#37210</guid>
  </item> 
  <item>
   <title><![CDATA[how find row? : i want use tag for set Record...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=11144&amp;PID=37206&amp;title=how-find-row#37206</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4045">mozaheb</a><br /><strong>Subject:</strong> 11144<br /><strong>Posted:</strong> 23 June 2008 at 4:52am<br /><br />i want use tag for set Record ID and when update database update Record id, for this problem use tag to find record id and update items of record.<br><br><br>]]>
   </description>
   <pubDate>Mon, 23 Jun 2008 04:52:11 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=11144&amp;PID=37206&amp;title=how-find-row#37206</guid>
  </item> 
  <item>
   <title><![CDATA[how find row? : Hi,  I have been experimenting...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=11144&amp;PID=37205&amp;title=how-find-row#37205</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3701">Aaron</a><br /><strong>Subject:</strong> 11144<br /><strong>Posted:</strong> 23 June 2008 at 4:43am<br /><br />Hi,<DIV>&nbsp;</DIV><DIV>I have been experimenting a lot with the ReportControl but I never needed to use the .Tag before. That's why I asked you: Why do you need this anyway? Maybe I can help you and don't have to use the .Tag property at all <img src="https://forum.codejock.com/smileys/smiley2.gif" border="0"></DIV><DIV>&nbsp;</DIV><DIV>Here's a function to iterate the RC records</DIV><DIV>&nbsp;</DIV><DIV>Private Function FindTag(strTag As String)<BR>&nbsp;&nbsp;&nbsp; Dim record As XtremeReportControl.ReportRecord<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; For Each record In wndReportControl.Records<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If record.Tag = strTag Then MsgBox "Record found... Index = " &amp; record.Index<BR>&nbsp;&nbsp;&nbsp; Next record<BR>&nbsp;&nbsp;&nbsp; <BR>End Function</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Mon, 23 Jun 2008 04:43:37 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=11144&amp;PID=37205&amp;title=how-find-row#37205</guid>
  </item> 
  <item>
   <title><![CDATA[how find row? : yes yes, please guide me, thank...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=11144&amp;PID=37204&amp;title=how-find-row#37204</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4045">mozaheb</a><br /><strong>Subject:</strong> 11144<br /><strong>Posted:</strong> 23 June 2008 at 4:23am<br /><br />yes yes, please guide me, thank you]]>
   </description>
   <pubDate>Mon, 23 Jun 2008 04:23:59 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=11144&amp;PID=37204&amp;title=how-find-row#37204</guid>
  </item> 
  <item>
   <title><![CDATA[how find row? : Hi,  You assigned a value to...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=11144&amp;PID=37202&amp;title=how-find-row#37202</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3701">Aaron</a><br /><strong>Subject:</strong> 11144<br /><strong>Posted:</strong> 23 June 2008 at 4:11am<br /><br />Hi,<DIV>&nbsp;</DIV><DIV>You assigned a value to a tag? And you want to find the value (tag) in all records? </DIV><DIV>&nbsp;</DIV><DIV>May I ask why you want to&nbsp;this?</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Mon, 23 Jun 2008 04:11:07 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=11144&amp;PID=37202&amp;title=how-find-row#37202</guid>
  </item> 
 </channel>
</rss>