<?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 : Row Selection By Check Box</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Report Control : Row Selection By Check Box]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Tue, 28 Apr 2026 19:11:22 +0000</pubDate>
  <lastBuildDate>Tue, 14 Sep 2010 10:35:15 +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=17207</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[Row Selection By Check Box :   SHAN wrote:Hi Aaron,   Suppose...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17207&amp;PID=60188&amp;title=row-selection-by-check-box#60188</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3701">Aaron</a><br /><strong>Subject:</strong> 17207<br /><strong>Posted:</strong> 14 September 2010 at 10:35am<br /><br /><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Originally posted by SHAN" alt="Originally posted by SHAN" style="vertical-align: text-bottom;" /> <strong>SHAN wrote:</strong><br /><br />Hi Aaron, <DIV>&nbsp;</DIV><DIV>Suppose I have 1000 and above records, I need to select some records (&nbsp;Ex: 10 to 15 Records)&nbsp;and do some action...</DIV><DIV>&#091;...&#093;</DIV><DIV>&nbsp;</DIV></td></tr></table> <DIV>&nbsp;</DIV><DIV>Hi,</DIV><DIV>&nbsp;</DIV><DIV>If you are talking about few thousand records, I wouldn't worry&nbsp;about iterating&nbsp;"those few records".&nbsp;If it would take more than a second to iterate&nbsp;entire collection, I would consider&nbsp;what Hemish proposed. Well, you need some 500.000 records (tested with my own laptop) to get to that second "waiting" and users don't notice that small delay (in your case).</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Tue, 14 Sep 2010 10:35:15 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17207&amp;PID=60188&amp;title=row-selection-by-check-box#60188</guid>
  </item> 
  <item>
   <title><![CDATA[Row Selection By Check Box : Could you possibly record the...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17207&amp;PID=60183&amp;title=row-selection-by-check-box#60183</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6296">Hemesh</a><br /><strong>Subject:</strong> 17207<br /><strong>Posted:</strong> 14 September 2010 at 8:42am<br /><br />Could you possibly record the records that the user "ticks" into a collection and they just pull out the records by index to help speed things up (if the feature you want doesn't get implemented)?<br>]]>
   </description>
   <pubDate>Tue, 14 Sep 2010 08:42:31 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17207&amp;PID=60183&amp;title=row-selection-by-check-box#60183</guid>
  </item> 
  <item>
   <title><![CDATA[Row Selection By Check Box : Hi Aaron,  Suppose I have 1000...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17207&amp;PID=60181&amp;title=row-selection-by-check-box#60181</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6244">SHAN</a><br /><strong>Subject:</strong> 17207<br /><strong>Posted:</strong> 14 September 2010 at 8:20am<br /><br />Hi Aaron,<DIV>&nbsp;</DIV><DIV>Suppose I have 1000 and above records, I need to select some records (&nbsp;Ex: 10 to 15 Records)&nbsp;and do some action...</DIV><DIV>&nbsp;</DIV><DIV><U><FONT color=#000099><strong>Case 1:</strong></FONT></U></DIV><DIV>&nbsp;</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If there is a Row Selection Check box I can simply use this Code</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; for i=0 to ReportControl1.SelectedRows.count - 1</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;' Do any Action</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT color=#0000ff>' This will loop only 10 to 15 Records....!</FONT></DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; next</DIV><DIV>&nbsp;</DIV><DIV><U><FONT color=#000099><strong>Case 2:</strong></FONT></U></DIV><DIV><strong><U><FONT color=#000099></FONT></U></strong>&nbsp;</DIV><DIV><FONT color=#000000>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If i try to add check box for 1000 and above records itself&nbsp; will take some time...</FONT></DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; then you have to loop through all rows to check whthere row Selected or Not...?</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; for i=0 to ReportControl1.Rows.count - 1</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if ReportControl1.Rows(i).record.Item(0).Checked=true then</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;' Do any Action</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;end if&nbsp;&nbsp; </DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT color=#ff0000>' This will loop&nbsp;1000 and above&nbsp;Records....!</FONT></DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; next</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>In my case I have records sometime above 10,000.</DIV><DIV>&nbsp;</DIV><DIV>So that is the reason i am expecting some option like</DIV><DIV>&nbsp;</DIV><DIV><strong><FONT color=#000066><FONT color=#0000ff>ReportControl1.rowselectioncheck=true</FONT>.</FONT></strong></DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Tue, 14 Sep 2010 08:20:29 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17207&amp;PID=60181&amp;title=row-selection-by-check-box#60181</guid>
  </item> 
  <item>
   <title><![CDATA[Row Selection By Check Box : Having the control already do...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17207&amp;PID=60159&amp;title=row-selection-by-check-box#60159</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6296">Hemesh</a><br /><strong>Subject:</strong> 17207<br /><strong>Posted:</strong> 13 September 2010 at 9:18am<br /><br />Having the control already do it makes it less code for the end user, so he's just being lazy <img src="http://forum.codejock.com/smileys/smiley36.gif" border="0" align="absmiddle">]]>
   </description>
   <pubDate>Mon, 13 Sep 2010 09:18:04 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17207&amp;PID=60159&amp;title=row-selection-by-check-box#60159</guid>
  </item> 
  <item>
   <title><![CDATA[Row Selection By Check Box : Hi SHAN,  What is difference...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17207&amp;PID=60157&amp;title=row-selection-by-check-box#60157</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3701">Aaron</a><br /><strong>Subject:</strong> 17207<br /><strong>Posted:</strong> 13 September 2010 at 9:03am<br /><br />Hi SHAN,<DIV>&nbsp;</DIV><DIV>What is difference between looping rows and selected rows? The only thing that would be different when you would have "<strong><FONT color=#0000cc>Rowselectioncheckbox</FONT></strong>" you don't have to set .HasCheckbox for a ReportItem. You still have to check 'selected value' and todo this, you have to&nbsp;loop rows. Maybe I don't understand what you are trying to say and I would like to hear what you are trying to accomplish.</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;&nbsp;&nbsp;</DIV>]]>
   </description>
   <pubDate>Mon, 13 Sep 2010 09:03:48 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17207&amp;PID=60157&amp;title=row-selection-by-check-box#60157</guid>
  </item> 
  <item>
   <title><![CDATA[Row Selection By Check Box : If more people on the form indicate...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17207&amp;PID=60150&amp;title=row-selection-by-check-box#60150</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6296">Hemesh</a><br /><strong>Subject:</strong> 17207<br /><strong>Posted:</strong> 13 September 2010 at 3:26am<br /><br />If more people on the form indicate this, then I'm sure it'll be included :)<br>]]>
   </description>
   <pubDate>Mon, 13 Sep 2010 03:26:29 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17207&amp;PID=60150&amp;title=row-selection-by-check-box#60150</guid>
  </item> 
  <item>
   <title><![CDATA[Row Selection By Check Box : Thanks Hemesh,  In future Release...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17207&amp;PID=60142&amp;title=row-selection-by-check-box#60142</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6244">SHAN</a><br /><strong>Subject:</strong> 17207<br /><strong>Posted:</strong> 12 September 2010 at 5:13am<br /><br />Thanks Hemesh,<DIV>&nbsp;</DIV><DIV>In future Release if they have option like this will be easier..!</DIV><DIV>So that you can loop through Selected Rows.</DIV><DIV>&nbsp;</DIV><DIV><strong><FONT color=#0000cc>Reportcontrol1.Rowselectioncheckbox=true</FONT></strong></DIV><DIV><strong><FONT color=#0000cc></FONT></strong>&nbsp;</DIV><DIV>If you add a column you have to loop through All Rows for checked status...</DIV><DIV>It's time consuming...! </DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV><FONT color=#0000cc><strong></strong></FONT>&nbsp;</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Sun, 12 Sep 2010 05:13:16 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17207&amp;PID=60142&amp;title=row-selection-by-check-box#60142</guid>
  </item> 
  <item>
   <title><![CDATA[Row Selection By Check Box : I think you&amp;#039;d have to add...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17207&amp;PID=60122&amp;title=row-selection-by-check-box#60122</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6296">Hemesh</a><br /><strong>Subject:</strong> 17207<br /><strong>Posted:</strong> 10 September 2010 at 4:35am<br /><br />I think you'd have to add a checkbox to each record in the first item column.]]>
   </description>
   <pubDate>Fri, 10 Sep 2010 04:35:04 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17207&amp;PID=60122&amp;title=row-selection-by-check-box#60122</guid>
  </item> 
  <item>
   <title><![CDATA[Row Selection By Check Box : Hi,    I want to select Rows...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17207&amp;PID=60068&amp;title=row-selection-by-check-box#60068</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6244">SHAN</a><br /><strong>Subject:</strong> 17207<br /><strong>Posted:</strong> 06 September 2010 at 5:16am<br /><br />Hi,<DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>&nbsp; I want to select Rows using Selection Box. </DIV><DIV>&nbsp;</DIV><DIV>&nbsp; Is there any Inbuilt check box for each Rows for Selection or do we need to loop through all rows with adding a check box Column?</DIV><DIV>&nbsp;</DIV><DIV>&nbsp; </DIV>]]>
   </description>
   <pubDate>Mon, 06 Sep 2010 05:16:36 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17207&amp;PID=60068&amp;title=row-selection-by-check-box#60068</guid>
  </item> 
 </channel>
</rss>