<?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 : Progress Control in Statusbar</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Command Bars : Progress Control in Statusbar]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Fri, 29 May 2026 21:12:12 +0000</pubDate>
  <lastBuildDate>Wed, 23 Sep 2009 16:03: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=15228</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[Progress Control in Statusbar : ok; I found what was wrong (I...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15228&amp;PID=53399&amp;title=progress-control-in-statusbar#53399</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4876">unknow</a><br /><strong>Subject:</strong> 15228<br /><strong>Posted:</strong> 23 September 2009 at 4:03pm<br /><br />ok; I found what was wrong (I wasn't using correctly the show/hide function) and the progress control remained in hide state, I noticed that by accessing the statusbar menu (right-click).<DIV>&nbsp;</DIV><DIV>I just have another problem I can't seem to solve: the progress control is displayed in old windows 95 flat blue color format.</DIV><DIV>&nbsp;</DIV><DIV>I don't understand since I copied entirely the progress control related code from statusbar, where the style is set to <strong>PBS_SMOOTH.</strong></DIV><DIV>&nbsp;</DIV><DIV>Also my application is using the Toolkit Office2007 paintmanager time and it is successfully on ALL the controls/windows of my applications (including statusbar) - EXCEPT to the progress control !??</DIV><DIV>&nbsp;</DIV><DIV>Any idea?</DIV><DIV>Thanks ;)</DIV>]]>
   </description>
   <pubDate>Wed, 23 Sep 2009 16:03:19 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15228&amp;PID=53399&amp;title=progress-control-in-statusbar#53399</guid>
  </item> 
  <item>
   <title><![CDATA[Progress Control in Statusbar : Hi, try to trace CXTPStatusBar::PositionControls()...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15228&amp;PID=53365&amp;title=progress-control-in-statusbar#53365</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 15228<br /><strong>Posted:</strong> 23 September 2009 at 3:42am<br /><br />Hi,<DIV>try to trace CXTPStatusBar::PositionControls() method.</DIV><DIV>&nbsp;</DIV><DIV>anyway think CXTPStatusBarProgressPane is better choise for progress in StatusBar.</DIV><DIV>&nbsp;</DIV><DIV>From RibbonSample:</DIV><DIV>&nbsp;</DIV><DIV>CXTPStatusBarProgressPane* pProgressPane = (CXTPStatusBarProgressPane*)m_wndStatusBar.AddIndicator(new CXTPStatusBarProgressPane(), ID_INDICATOR_PROGRESS);<BR>&nbsp;pProgressPane-&gt;SetBeginGroup(FALSE);<BR>&nbsp;pProgressPane-&gt;SetCaption(_T("&amp;ProgressBar"));<BR>&nbsp;pProgressPane-&gt;SetWidth(100);<BR>&nbsp;pProgressPane-&gt;SetPos(30);<BR>&nbsp;pProgressPane-&gt;SetPadding(3, 0, 3, 0);<BR>&nbsp;pProgressPane-&gt;SetVisible(FALSE);<BR><BR></DIV>]]>
   </description>
   <pubDate>Wed, 23 Sep 2009 03:42:39 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15228&amp;PID=53365&amp;title=progress-control-in-statusbar#53365</guid>
  </item> 
  <item>
   <title><![CDATA[Progress Control in Statusbar : Hi; I&amp;#039;d like to show a progress...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15228&amp;PID=53355&amp;title=progress-control-in-statusbar#53355</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4876">unknow</a><br /><strong>Subject:</strong> 15228<br /><strong>Posted:</strong> 22 September 2009 at 6:37pm<br /><br />Hi; I'd like to show a progress control within my application status bar (ie. to display operations progression). <DIV>&nbsp;</DIV><DIV>I reused the code provided with the Statusbar sample, which is mainl :</DIV><DIV>&nbsp;</DIV><DIV>CMainFrame::OnCreate(.....</DIV><DIV>&nbsp;m_wndStatusBar.GetPane(0)-&gt;SetBeginGroup(FALSE);<BR>&nbsp;m_wndStatusBar.SetRibbonDividerIndex(m_wndStatusBar.GetPaneCount() - 1);<BR>&nbsp;AddProgress();<BR>&nbsp;m_wndStatusBar.EnableCustomization();<BR></DIV><DIV>I also of course declared the value ID_INDICATOR_PROG is ressource strings, and declared CProgressCtrl m_wndProgCtrl in mainfrm.h.</DIV><DIV>&nbsp;</DIV><DIV>But the Progresscontrol doesn't show !!??</DIV><DIV>&nbsp;</DIV><DIV>I've done exactly as in the example, when debugging the ::AddProgress function, the trace result is identically between the sample and my App.</DIV><DIV>&nbsp;</DIV><DIV>I even added full statusbar indicators to the statusbar sample, removed all other controls like AddLogo(), AddEdit() etc.. and the ProgressControl still displays..</DIV><DIV>&nbsp;</DIV><DIV>What could I possibly forget to do in my App, any hint?</DIV><DIV>&nbsp;</DIV><DIV>Many thankx in advance!!</DIV>]]>
   </description>
   <pubDate>Tue, 22 Sep 2009 18:37:36 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15228&amp;PID=53355&amp;title=progress-control-in-statusbar#53355</guid>
  </item> 
 </channel>
</rss>