<?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 : Report C&#111;ntrol: row number limits?</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Toolkit Pro : Report C&#111;ntrol: row number limits?]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Tue, 21 Apr 2026 06:27:50 +0000</pubDate>
  <lastBuildDate>Tue, 10 May 2005 12:31:12 +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=2199</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[Report C&#111;ntrol: row number limits? : Thank you, Oleg your reply is...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=2199&amp;PID=6523&amp;title=report-control-row-number-limits#6523</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=186">Russ</a><br /><strong>Subject:</strong> 2199<br /><strong>Posted:</strong> 10 May 2005 at 12:31pm<br /><br />Thank you, Oleg<br />your reply is highly appreciated! (&#1082;&#1072;&#1082; &#1086;&#1073;&#1099;&#1095;&#1085;&#1086; :)]]>
   </description>
   <pubDate>Tue, 10 May 2005 12:31:12 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=2199&amp;PID=6523&amp;title=report-control-row-number-limits#6523</guid>
  </item> 
  <item>
   <title><![CDATA[Report C&#111;ntrol: row number limits? : Replace this member: void CXT...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=2199&amp;PID=6517&amp;title=report-control-row-number-limits#6517</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 2199<br /><strong>Posted:</strong> 09 May 2005 at 4:03pm<br /><br /><P>Replace this member:</P><P>void CXTPReportControl::OnVScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar)<BR>{<BR>&nbsp;if (pScrollBar != NULL)<BR>&nbsp;{<BR>&nbsp;&nbsp;CWnd::OnVScroll(nSBCode, nPos, pScrollBar);<BR>&nbsp;&nbsp;return;<BR>&nbsp;}<BR>&nbsp;int nCurPos = m_nTopRow;</P><P>&nbsp;// decide what to do for each diffrent scroll event<BR>&nbsp;switch(nSBCode)<BR>&nbsp;{<BR>&nbsp;&nbsp;case SB_TOP: nCurPos = 0; break;<BR>&nbsp;&nbsp;case SB_BOTTOM: nCurPos = GetScrollLimit(SB_VERT); break;<BR>&nbsp;&nbsp;case SB_LINEUP: nCurPos = max(nCurPos - 1, 0); break;<BR>&nbsp;&nbsp;case SB_LINEDOWN: nCurPos = min(nCurPos + 1, GetScrollLimit(SB_VERT)); break;</P><P>&nbsp;&nbsp;case SB_PAGEUP: nCurPos = max(nCurPos - GetReportAreaRows(nCurPos, false), 0); break;<BR>&nbsp;&nbsp;case SB_PAGEDOWN: nCurPos = min(nCurPos + GetReportAreaRows(nCurPos, true), GetScrollLimit(SB_VERT)); break;</P><P>&nbsp;&nbsp;case SB_THUMBTRACK:<BR>&nbsp;&nbsp;case SB_THUMBPOSITION:<BR>&nbsp;&nbsp;&nbsp;{<BR>&nbsp;&nbsp;&nbsp;&nbsp;SCROLLINFO si;<BR>&nbsp;&nbsp;&nbsp;&nbsp;ZeroMemory(&amp;si, sizeof(SCROLLINFO));<BR>&nbsp;&nbsp;&nbsp;&nbsp;si.cbSize = sizeof(SCROLLINFO);<BR>&nbsp;&nbsp;&nbsp;&nbsp;si.fMask = SIF_TRACKPOS;</P><P>&nbsp;&nbsp;&nbsp;&nbsp;if (!GetScrollInfo(SB_VERT, &amp;si) )<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return;<BR>&nbsp;&nbsp;&nbsp;&nbsp;nCurPos = si.nTrackPos;<BR>&nbsp;&nbsp;&nbsp;}<BR>&nbsp;&nbsp;&nbsp;break;<BR>&nbsp;}</P><P>&nbsp;SetTopRow(nCurPos);</P><P>&nbsp;CWnd::OnVScroll(nSBCode, nPos, pScrollBar);<BR>}<BR></P>]]>
   </description>
   <pubDate>Mon, 09 May 2005 16:03:58 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=2199&amp;PID=6517&amp;title=report-control-row-number-limits#6517</guid>
  </item> 
  <item>
   <title><![CDATA[Report C&#111;ntrol: row number limits? : can I have a patch - just to fix...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=2199&amp;PID=6515&amp;title=report-control-row-number-limits#6515</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=186">Russ</a><br /><strong>Subject:</strong> 2199<br /><strong>Posted:</strong> 09 May 2005 at 1:21pm<br /><br />can I have a patch - just to fix this bug? I do not need any extra features, just the control that works]]>
   </description>
   <pubDate>Mon, 09 May 2005 13:21:37 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=2199&amp;PID=6515&amp;title=report-control-row-number-limits#6515</guid>
  </item> 
  <item>
   <title><![CDATA[Report C&#111;ntrol: row number limits? : It was fixed in 9.60. Right, limit...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=2199&amp;PID=6514&amp;title=report-control-row-number-limits#6514</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 2199<br /><strong>Posted:</strong> 09 May 2005 at 11:12am<br /><br />It was fixed in 9.60. Right, limit was 36000.]]>
   </description>
   <pubDate>Mon, 09 May 2005 11:12:46 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=2199&amp;PID=6514&amp;title=report-control-row-number-limits#6514</guid>
  </item> 
  <item>
   <title><![CDATA[Report C&#111;ntrol: row number limits? : I just looked at the Report control...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=2199&amp;PID=6508&amp;title=report-control-row-number-limits#6508</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=186">Russ</a><br /><strong>Subject:</strong> 2199<br /><strong>Posted:</strong> 09 May 2005 at 2:48am<br /><br />I just looked at the Report control sample provided with v9.51. If you change OnInitDialog in the PerfomanceTestDlg.cpp to add 100000 instead of just 1000 you'll have no luck scrolling list down to the last item. The code crashes after you get behind 30000 (approx) records.<br /><br />are there any hardcoded limits on the number of rows a control can contain?]]>
   </description>
   <pubDate>Mon, 09 May 2005 02:48:52 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=2199&amp;PID=6508&amp;title=report-control-row-number-limits#6508</guid>
  </item> 
 </channel>
</rss>