<?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 : Willing to pay for Report Control help</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Report Control : Willing to pay for Report Control help]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Tue, 12 May 2026 22:13:32 +0000</pubDate>
  <lastBuildDate>Sat, 03 Oct 2020 08:05:54 +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=24075</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[Willing to pay for Report Control help : It turns out that the ActiveX...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=24075&amp;PID=77891&amp;title=willing-to-pay-for-report-control-help#77891</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=8886">wrecks</a><br /><strong>Subject:</strong> 24075<br /><strong>Posted:</strong> 03 October 2020 at 8:05am<br /><br />It turns out that the ActiveX interface mechanism in my language (APL+Win) is the culprit.&nbsp; The same logic coded in a VB6 program runs apx. 100 times faster.&nbsp; Sigh.<div><br></div><div>We had not noticed this before because with other ActiveX controls we use (e.g., Excel) we can pass an array of data in one call.&nbsp; With the ReportControl, we have to use the&nbsp; AddItem method for each individual "cell".&nbsp; If only there were an AddItems (plural) method!</div>]]>
   </description>
   <pubDate>Sat, 03 Oct 2020 08:05:54 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=24075&amp;PID=77891&amp;title=willing-to-pay-for-report-control-help#77891</guid>
  </item> 
  <item>
   <title><![CDATA[Willing to pay for Report Control help : Can you disable window updating?...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=24075&amp;PID=77888&amp;title=willing-to-pay-for-report-control-help#77888</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3213">rdhd</a><br /><strong>Subject:</strong> 24075<br /><strong>Posted:</strong> 02 October 2020 at 5:20pm<br /><br /><div>Can you disable window updating? We have issues with Windows comboboxes that appeared out of nowhere. We did a couple of things. The combobox has an InitStorage call so we make it when we know how many items we are going to add. We also call SetRedraw to false before loading the box and back to true when we are done.</div><div><br></div><div>If not MFC based, use the WM_SETREDRAW message, which is all MFC does, before loading and after loading.</div><div><br></div><div>I have seen very slow updates in a .NET grid view and it too was caused by display updating occurring as each item was added to the view. It becomes so slow you can easily watch it "grow" as rows are added. Simply resizing the window so it is short revealed it was all display based.<br></div><div><br></div><div>I'd run Spyxx and see what messages are streaming as you make your calls. Look first to see if it is redrawing - WM_PAINT, WM_ERASEBKGND. <br></div>]]>
   </description>
   <pubDate>Fri, 02 Oct 2020 17:20:05 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=24075&amp;PID=77888&amp;title=willing-to-pay-for-report-control-help#77888</guid>
  </item> 
  <item>
   <title><![CDATA[Willing to pay for Report Control help : What language are you using? Can...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=24075&amp;PID=77885&amp;title=willing-to-pay-for-report-control-help#77885</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2676">jpbro</a><br /><strong>Subject:</strong> 24075<br /><strong>Posted:</strong> 30 September 2020 at 9:38am<br /><br />What language are you using? Can you post a code sample?<br>]]>
   </description>
   <pubDate>Wed, 30 Sep 2020 09:38:02 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=24075&amp;PID=77885&amp;title=willing-to-pay-for-report-control-help#77885</guid>
  </item> 
  <item>
   <title><![CDATA[Willing to pay for Report Control help : I am having trouble with the ActiveX...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=24075&amp;PID=77880&amp;title=willing-to-pay-for-report-control-help#77880</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=8886">wrecks</a><br /><strong>Subject:</strong> 24075<br /><strong>Posted:</strong> 29 September 2020 at 11:31am<br /><br />I am having trouble with the ActiveX version of the Codejock Report Control.&nbsp; It works great, but the performance is unacceptable.&nbsp; Adding 188 records with 5 items each (940 items) takes almost 3 seconds on my very fast Windows 10 PC.&nbsp; I have tried the&nbsp;UseBatchAllocation method, but that does not seem to make any difference.&nbsp;&nbsp;<div><br></div><div>There is very little activity on this forum.&nbsp; Is there anybody watching that is good at this and would like to get paid for helping...?&nbsp;&nbsp;</div>]]>
   </description>
   <pubDate>Tue, 29 Sep 2020 11:31:53 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=24075&amp;PID=77880&amp;title=willing-to-pay-for-report-control-help#77880</guid>
  </item> 
 </channel>
</rss>