<?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 : Some bugs in Report Control</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Report Control : Some bugs in Report Control]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sun, 05 Apr 2026 15:48:40 +0000</pubDate>
  <lastBuildDate>Wed, 09 Dec 2009 14:18:19 +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=15522</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[Some bugs in Report Control : It used little bit different now...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15522&amp;PID=55504&amp;title=some-bugs-in-report-control#55504</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4721">mdoubson</a><br /><strong>Subject:</strong> 15522<br /><strong>Posted:</strong> 09 December 2009 at 2:18pm<br /><br /><P>It used little bit different now - please get updated source - <a href="https://forum.codejock.com/uploads/DemoVersi&#111;n/ReportC&#111;ntrolMFCUpdated.rar" target="_blank">https://forum.codejock.com/uploads/DemoVersion/ReportControlMFCUpdated.rar</A></P>]]>
   </description>
   <pubDate>Wed, 09 Dec 2009 14:18:19 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15522&amp;PID=55504&amp;title=some-bugs-in-report-control#55504</guid>
  </item> 
  <item>
   <title><![CDATA[Some bugs in Report Control : I made this change, but it introduced...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15522&amp;PID=55502&amp;title=some-bugs-in-report-control#55502</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=945">larryp</a><br /><strong>Subject:</strong> 15522<br /><strong>Posted:</strong> 09 December 2009 at 2:11pm<br /><br />I made this change, but it introduced a problem where if I manually scroll down, then click on any row, the control scrolls all the way to the top.<DIV></DIV><DIV></DIV>So, this is not the real fix.<DIV>&nbsp;</DIV><DIV>--Larry</DIV>]]>
   </description>
   <pubDate>Wed, 09 Dec 2009 14:11:25 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15522&amp;PID=55502&amp;title=some-bugs-in-report-control#55502</guid>
  </item> 
  <item>
   <title><![CDATA[Some bugs in Report Control : You right, thanks. Remove // in...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15522&amp;PID=54705&amp;title=some-bugs-in-report-control#54705</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4721">mdoubson</a><br /><strong>Subject:</strong> 15522<br /><strong>Posted:</strong> 10 November 2009 at 12:25pm<br /><br />You right, thanks. Remove // in red lines please]]>
   </description>
   <pubDate>Tue, 10 Nov 2009 12:25:18 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15522&amp;PID=54705&amp;title=some-bugs-in-report-control#54705</guid>
  </item> 
  <item>
   <title><![CDATA[Some bugs in Report Control : 1. Function DoAutoVertScrollIfNeed...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15522&amp;PID=54450&amp;title=some-bugs-in-report-control#54450</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3861">aceproof</a><br /><strong>Subject:</strong> 15522<br /><strong>Posted:</strong> 02 November 2009 at 4:33am<br /><br />1. Function DoAutoVertScrollIfNeed does not work while dragging item<br /><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Quote" alt="Quote" style="vertical-align: text-bottom;" /> <br />void CXTPReportControl::DoAutoVertScrollIfNeed(CPoint ptClick, CPoint pt)<br />{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;...<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CXTPReportRow* pRow0 = m_arrScreenRows.GetAt(0);<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CXTPReportRow* pRow1 = m_arrScreenRows.GetAt(m_arrScreenRows.GetCount() - 1);<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;...<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;int nDirection = 0;<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CRect rc0 = m_rcReportArea;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CRect rc1 = m_rcReportArea;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font color=red>rc0.bottom = m_rcReportArea.top;// + 20;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;rc1.top = m_rcReportArea.bottom;// - 20;</font><br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (rc0.PtInRect(pt))<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;nDirection = -1;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;else if (rc1.PtInRect(pt))<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;nDirection = 1;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;...<br />}<br /></td></tr></table><br />rc0 and rc1 is empty, nDirection = 0 all the time<br /><br />2. <br />report.FocusSubItems(TRUE);<br /><br />While pressing the "Left" key the selection of the Item don't change]]>
   </description>
   <pubDate>Mon, 02 Nov 2009 04:33:34 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15522&amp;PID=54450&amp;title=some-bugs-in-report-control#54450</guid>
  </item> 
 </channel>
</rss>