<?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 update</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 update]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 20 Apr 2026 20:13:44 +0000</pubDate>
  <lastBuildDate>Tue, 04 Jan 2005 18:01:58 +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=1512</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 update : Hi haiku,  I believe it is not...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1512&amp;PID=4606&amp;title=report-control-update#4606</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=862">sserge</a><br /><strong>Subject:</strong> 1512<br /><strong>Posted:</strong> 04 January 2005 at 6:01pm<br /><br />Hi haiku,<br /><br />I believe it is not possible to redraw a small piece of the control in the current version. However, during redraw it updates only visible part of the picture and uses picture caching in memory. Really, it seems to provide well enough performance. Any objections?<br /><br />--<br />Regards,<br />Serge]]>
   </description>
   <pubDate>Tue, 04 Jan 2005 18:01:58 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1512&amp;PID=4606&amp;title=report-control-update#4606</guid>
  </item> 
  <item>
   <title><![CDATA[Report c&#111;ntrol update : Dear mhamsa, Are you completely...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1512&amp;PID=4539&amp;title=report-control-update#4539</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=860">haiku</a><br /><strong>Subject:</strong> 1512<br /><strong>Posted:</strong> 27 December 2004 at 2:21am<br /><br /><P>Dear mhamsa,</P><P>Are you completely sure this is the answer to my question ?</P><P>Best regards, Haiku.</P>]]>
   </description>
   <pubDate>Mon, 27 Dec 2004 02:21:02 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1512&amp;PID=4539&amp;title=report-control-update#4539</guid>
  </item> 
  <item>
   <title><![CDATA[Report c&#111;ntrol update : Use the Populate method on the...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1512&amp;PID=4410&amp;title=report-control-update#4410</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=887">mhamsa</a><br /><strong>Subject:</strong> 1512<br /><strong>Posted:</strong> 16 December 2004 at 12:32pm<br /><br />Use the Populate method on the report control.]]>
   </description>
   <pubDate>Thu, 16 Dec 2004 12:32:47 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1512&amp;PID=4410&amp;title=report-control-update#4410</guid>
  </item> 
  <item>
   <title><![CDATA[Report c&#111;ntrol update : I am interested in this also....]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1512&amp;PID=4347&amp;title=report-control-update#4347</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=312">ICBM</a><br /><strong>Subject:</strong> 1512<br /><strong>Posted:</strong> 10 December 2004 at 2:17pm<br /><br />I am interested in this also. Oleg, are you around ?]]>
   </description>
   <pubDate>Fri, 10 Dec 2004 14:17:55 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1512&amp;PID=4347&amp;title=report-control-update#4347</guid>
  </item> 
  <item>
   <title><![CDATA[Report c&#111;ntrol update : Hello Developers, I want to know...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1512&amp;PID=4338&amp;title=report-control-update#4338</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=860">haiku</a><br /><strong>Subject:</strong> 1512<br /><strong>Posted:</strong> 10 December 2004 at 6:07am<br /><br /><P>Hello Developers,</P><P>I want to know how to update control efficiently. If only one row/record has to be updated, than entire control is being redrawn (BeginUpdate/EndUpdate). Calling InvalidateRect(...) with correct&nbsp;rectangle is useless. I collected the needed rectangle from CXTPReportRow::GetRect() method. It's useless 'cos CXTPReportControl::OnPaint message handler will paint the control only when IsChanged method returns TRUE. </P><P>Why didn't you use CXTMemDC in OnPaint handler ? You don't use GetClipBox function while drawing the control. Why ? </P><P>Please correct me if I miss something or don't understand correctly. All I want is to update few records efficiently. </P><P><FONT size=1>Best regards,</FONT></P><P><FONT size=1>Haiku.</P></FONT>]]>
   </description>
   <pubDate>Fri, 10 Dec 2004 06:07:42 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1512&amp;PID=4338&amp;title=report-control-update#4338</guid>
  </item> 
 </channel>
</rss>