<?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 : [SOLVED] Row selection</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Report Control : [SOLVED] Row selection]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Thu, 14 May 2026 19:56:59 +0000</pubDate>
  <lastBuildDate>Thu, 14 Apr 2011 04:25:32 +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=18216</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[[SOLVED] Row selection : Thank you!hexxa   ]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=18216&amp;PID=63876&amp;title=solved-row-selection#63876</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6506">hexxa</a><br /><strong>Subject:</strong> 18216<br /><strong>Posted:</strong> 14 April 2011 at 4:25am<br /><br />Thank you!<br>hexxa<br>]]>
   </description>
   <pubDate>Thu, 14 Apr 2011 04:25:32 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=18216&amp;PID=63876&amp;title=solved-row-selection#63876</guid>
  </item> 
  <item>
   <title><![CDATA[[SOLVED] Row selection : Hi,as Aaron stated, this has already...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=18216&amp;PID=63869&amp;title=solved-row-selection#63869</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1755">ABuenger</a><br /><strong>Subject:</strong> 18216<br /><strong>Posted:</strong> 13 April 2011 at 3:23pm<br /><br />Hi,<br><br>as Aaron stated, this has already been fixed. Please update to v15.<br><br>Andre<br><br>]]>
   </description>
   <pubDate>Wed, 13 Apr 2011 15:23:51 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=18216&amp;PID=63869&amp;title=solved-row-selection#63869</guid>
  </item> 
  <item>
   <title><![CDATA[[SOLVED] Row selection : Hi, I have had same thing but...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=18216&amp;PID=63862&amp;title=solved-row-selection#63862</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3701">Aaron</a><br /><strong>Subject:</strong> 18216<br /><strong>Posted:</strong> 13 April 2011 at 12:00pm<br /><br /><P>Hi,</P><P>I have had same thing but this has been solved in V15.0 </P><DIV>I guess you have to update version to get this working. See post <a href="http://forum.codejock.com/forum_posts.asp?TID=16309&amp;title=bug-v1330-issues-59-solved-30" target="_blank">http://forum.codejock.com/forum_posts.asp?TID=16309&amp;title=bug-v1330-issues-59-solved-30</A>&nbsp;(it started with cutoff grouplines issue #6, maybe there are more replies in this post...)</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Wed, 13 Apr 2011 12:00:51 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=18216&amp;PID=63862&amp;title=solved-row-selection#63862</guid>
  </item> 
  <item>
   <title><![CDATA[[SOLVED] Row selection :  Hi!When i populating a Reportcontrol...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=18216&amp;PID=63855&amp;title=solved-row-selection#63855</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6506">hexxa</a><br /><strong>Subject:</strong> 18216<br /><strong>Posted:</strong> 13 April 2011 at 9:42am<br /><br />Hi!<br><br>When i populating a Reportcontrol where some column out of the control rectangle (or just part of the column) i can't select any row scrolling with horizontal bar and clicking on the "outer" field.<br><br>Here is my sample:<br><br>Private Sub Form_Load()<br>&nbsp;&nbsp;&nbsp; Dim i As Integer<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; rc1.Columns.Add 0, "1", rc1.Width \ 2, False<br>&nbsp;&nbsp;&nbsp; rc1.Columns.Add 1, "2", rc1.Width \ 2, False<br>&nbsp;&nbsp;&nbsp; rc1.Columns.Add 2, "3", rc1.Width \ 2, False<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; For i = 0 To 9<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; With rc1.Records.Add<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .AddItem CStr(Rnd(i))<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .AddItem CStr(Rnd(i))<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .AddItem CStr(Rnd(i))<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End With<br>&nbsp;&nbsp;&nbsp; Next i<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; rc1.Populate<br>&nbsp;&nbsp;&nbsp; <br>End Sub<br><br>Scrolling to the column 3 and clicking: the clicked row, doesn't get selected<br><br>Anybody meet this problem?<br><br>hexxa<br><br>Xtreme Report 13.4.2<br>Visual Basic 6 SP6<br>Windows XP Professional SP3<br>]]>
   </description>
   <pubDate>Wed, 13 Apr 2011 09:42:11 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=18216&amp;PID=63855&amp;title=solved-row-selection#63855</guid>
  </item> 
 </channel>
</rss>