<?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 : CXTPStatusBar::SetPaneText missing bUpdate arg</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Command Bars : CXTPStatusBar::SetPaneText missing bUpdate arg]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Fri, 12 Jun 2026 04:42:44 +0000</pubDate>
  <lastBuildDate>Wed, 08 Apr 2009 17:23:25 +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=11798</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[CXTPStatusBar::SetPaneText missing bUpdate arg : Nothing to do with Codejock per...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=11798&amp;PID=47698&amp;title=cxtpstatusbarsetpanetext-missing-bupdate-arg#47698</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3717">Smucker</a><br /><strong>Subject:</strong> 11798<br /><strong>Posted:</strong> 08 April 2009 at 5:23pm<br /><br />Nothing to do with Codejock per se; any long-running code should either be relegated to another thread or regularly handle messages during its execution. Otherwise the application becomes unresponsive.<br><br>I would also recommend calling UpdateWindow() rather than sending WM_PAINT directly; UpdateWindow() will generate the correct parameters for the paint message.<br><br>Even then, on Vista Aero you may not see every message because of the DWM.<br><br>]]>
   </description>
   <pubDate>Wed, 08 Apr 2009 17:23:25 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=11798&amp;PID=47698&amp;title=cxtpstatusbarsetpanetext-missing-bupdate-arg#47698</guid>
  </item> 
  <item>
   <title><![CDATA[CXTPStatusBar::SetPaneText missing bUpdate arg : Now that the flag is missing,...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=11798&amp;PID=47688&amp;title=cxtpstatusbarsetpanetext-missing-bupdate-arg#47688</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3213">rdhd</a><br /><strong>Subject:</strong> 11798<br /><strong>Posted:</strong> 08 April 2009 at 11:32am<br /><br /><P>Now that the flag is missing, users are not seeing all of our message strings. I don't know if that is due to the flag or some other issue in the new version. Now we have to call SetPaneText and then call SendMessage( WM_PAINT ) to force the pane to display the text. The problem is that as we are sometimes doing extensive processing and while doing so we send a number of messages we want the user to see immediately. It looks like&nbsp;WM_PAINT messages appear to be going onto the message queue and by the time our processing is done and the system starts processing messages on the queue, we have set the text a number of times and the user only sees the last text we set when OnPaint is finally called.</P><DIV>So it appears that not only do we have to re-edit existing code (you could have just left the parameter there if you believed the semantics of the function did not change and there would have been no compile issues), but once again when we moved to a newer version of CJ, we have found yet another issue with code that used to work and have had to come up with&nbsp;another work-around to restore the previous behavior.</DIV>]]>
   </description>
   <pubDate>Wed, 08 Apr 2009 11:32:35 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=11798&amp;PID=47688&amp;title=cxtpstatusbarsetpanetext-missing-bupdate-arg#47688</guid>
  </item> 
  <item>
   <title><![CDATA[CXTPStatusBar::SetPaneText missing bUpdate arg : Hi,  Please just remove this...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=11798&amp;PID=39772&amp;title=cxtpstatusbarsetpanetext-missing-bupdate-arg#39772</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 11798<br /><strong>Posted:</strong> 13 August 2008 at 1:24am<br /><br />Hi,<DIV>&nbsp;</DIV><DIV>Please just remove this last parameter&nbsp; - statusbar now handle it automatically.</DIV>]]>
   </description>
   <pubDate>Wed, 13 Aug 2008 01:24:13 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=11798&amp;PID=39772&amp;title=cxtpstatusbarsetpanetext-missing-bupdate-arg#39772</guid>
  </item> 
  <item>
   <title><![CDATA[CXTPStatusBar::SetPaneText missing bUpdate arg : I&amp;#039;m moving from Codejock...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=11798&amp;PID=39751&amp;title=cxtpstatusbarsetpanetext-missing-bupdate-arg#39751</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3003">mrmathis</a><br /><strong>Subject:</strong> 11798<br /><strong>Posted:</strong> 12 August 2008 at 11:50am<br /><br />I'm moving from Codejock 11 to 12 and found that CXTPStatusBar has removed the bUpdate argument from SetPaneText.&nbsp; It is still mentioned in the comment above the function declaration, and the help file SymbolReference.chm doesn't show it in the prototype but does still document it.&nbsp; I don't see any documentation for the change in the release_notes.htm or migrating_guide.htm, or here on the forums.<P>What happened to the arg?&nbsp; Do I need to handle the invalidate myself?&nbsp; Does it always update now?&nbsp; I see that the code has changed a good bit, but I'm not sure how I should react (if at all).</P><DIV>--Mike</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Tue, 12 Aug 2008 11:50:13 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=11798&amp;PID=39751&amp;title=cxtpstatusbarsetpanetext-missing-bupdate-arg#39751</guid>
  </item> 
 </channel>
</rss>