<?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 : StatusBar</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Command Bars : StatusBar]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 13 May 2026 20:19:18 +0000</pubDate>
  <lastBuildDate>Fri, 30 Nov 2007 09:49:05 +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=8849</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[StatusBar : Doh!  Sorry, of course, its...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=8849&amp;PID=29058&amp;title=statusbar#29058</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3513">StephenW</a><br /><strong>Subject:</strong> 8849<br /><strong>Posted:</strong> 30 November 2007 at 9:49am<br /><br />Doh!<DIV>&nbsp;</DIV><DIV>Sorry, of course, its fine now.</DIV>]]>
   </description>
   <pubDate>Fri, 30 Nov 2007 09:49:05 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=8849&amp;PID=29058&amp;title=statusbar#29058</guid>
  </item> 
  <item>
   <title><![CDATA[StatusBar : You didn&amp;#039;t add WithEvents...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=8849&amp;PID=28835&amp;title=statusbar#28835</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 8849<br /><strong>Posted:</strong> 26 November 2007 at 11:05am<br /><br />You didn't add WithEvents keyword:<DIV>&nbsp;</DIV><DIV><BR>Public <strong>WithEvents</strong> StatusBar As XtremeCommandBars.StatusBar<BR></DIV>]]>
   </description>
   <pubDate>Mon, 26 Nov 2007 11:05:28 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=8849&amp;PID=28835&amp;title=statusbar#28835</guid>
  </item> 
  <item>
   <title><![CDATA[StatusBar : Will you get a chance to look...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=8849&amp;PID=28834&amp;title=statusbar#28834</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3513">StephenW</a><br /><strong>Subject:</strong> 8849<br /><strong>Posted:</strong> 26 November 2007 at 10:30am<br /><br />Will you get a chance to look at this soon please ?]]>
   </description>
   <pubDate>Mon, 26 Nov 2007 10:30:15 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=8849&amp;PID=28834&amp;title=statusbar#28834</guid>
  </item> 
  <item>
   <title><![CDATA[StatusBar : When you say you will add it I...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=8849&amp;PID=28709&amp;title=statusbar#28709</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3513">StephenW</a><br /><strong>Subject:</strong> 8849<br /><strong>Posted:</strong> 21 November 2007 at 11:26am<br /><br /><DIV>When you say you will add it I assume this is for the next version release.&nbsp; What sort of timescales are normally involved for your releases so I have an idea on when I may be able to use this please ?</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>The paneclick event : No I dont receive it, but it may well be that I am doing something wrong.</DIV><P>1. I have an MDI form and have added a CommandBars control to it called objCommandbars.</P><DIV>2. In the MDIForm_Load event I add the status bar with a few panes (shown 1 pane added as an example) :</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;&nbsp;&nbsp; Dim objStatusBar As XtremeCommandBars.StatusBar<BR>&nbsp;&nbsp;&nbsp; Dim objStatusBarPane As XtremeCommandBars.StatusBarPane</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;&nbsp;&nbsp; ' Create a status bar and show it<BR>&nbsp;&nbsp;&nbsp; Set objStatusBar = objCommandbars.StatusBar<BR>&nbsp;&nbsp;&nbsp; objStatusBar.RemoveAll<BR>&nbsp;&nbsp;&nbsp; objStatusBar.Visible = True</DIV><DIV>&nbsp;</DIV><DIV><BR>&nbsp;&nbsp;&nbsp; ' Add the panes for it<BR>&nbsp;&nbsp;&nbsp; Set objStatusBarPane = objStatusBar.AddPane(ID_STATUSBAR_REPORT)<BR>&nbsp;&nbsp;&nbsp; objStatusBarPane.Width = 96<BR>&nbsp;&nbsp;&nbsp; objStatusBarPane.Style = SBPS_NOBORDERS<BR>&nbsp;&nbsp;&nbsp; objStatusBarPane.Alignment = xtpAlignmentLeft<BR>&nbsp;&nbsp;&nbsp; objStatusBarPane.Text = "Test"</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>3. Now I have added an event handler for the click event of the status bar :</DIV><DIV>&nbsp;</DIV><DIV>Private Sub StatusBar_PaneClick(ByVal Pane As XtremeCommandBars.StatusBarPane)<BR>&nbsp;&nbsp;&nbsp; Debug.Print "PaneClick. Id = "; Pane.ID</DIV><DIV><BR>End Sub</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>4. If I breakpoint this event and click the statusbar, all over it, it never triggers.&nbsp; It may well be the definition I have used for the event being incorrect, but I am unsure if this is the case or not.</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>Many thanks</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Wed, 21 Nov 2007 11:26:33 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=8849&amp;PID=28709&amp;title=statusbar#28709</guid>
  </item> 
  <item>
   <title><![CDATA[StatusBar : Hi,  1. Sorry, seems for ActiveX...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=8849&amp;PID=28702&amp;title=statusbar#28702</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 8849<br /><strong>Posted:</strong> 21 November 2007 at 9:10am<br /><br />Hi,<DIV>&nbsp;</DIV><DIV>1. Sorry, seems for ActiveX version, you can't control it :( We will add it</DIV><DIV>&nbsp;</DIV><DIV>2. You don't receive PaneClick event ?</DIV>]]>
   </description>
   <pubDate>Wed, 21 Nov 2007 09:10:32 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=8849&amp;PID=28702&amp;title=statusbar#28702</guid>
  </item> 
  <item>
   <title><![CDATA[StatusBar : Hello I have recently started...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=8849&amp;PID=28695&amp;title=statusbar#28695</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3513">StephenW</a><br /><strong>Subject:</strong> 8849<br /><strong>Posted:</strong> 21 November 2007 at 6:50am<br /><br /><P><BR>Hello</P><P>I have recently started to upgrade the interface of a VB6 application.&nbsp; The SkinFramework is very impressive and instantly transforms the look of the product.</P><P>I have a couple of questions that I hope someone can point me in the right direction with :</P><P>1. I have removed the VB6 status bar and added one of your XtremeCommandBars.StatusBar controls.&nbsp; I can add panes to this and have the text I require.&nbsp; I cannot figure out however what controls the light / dark blue shading applied to the panes (light blue on the left hand side), or how to get seperator bars as used in Word 2007.</P><P>2. I would like to be able to add a clickable pane to the status bar, of which I can control the visibility.&nbsp; I cannot seem to add the click event for the status bar such that it ever fires.&nbsp; Is this possible to do easily ?</P><P><BR>Many thanks for any help</P>]]>
   </description>
   <pubDate>Wed, 21 Nov 2007 06:50:06 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=8849&amp;PID=28695&amp;title=statusbar#28695</guid>
  </item> 
 </channel>
</rss>