<?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 : Not getting PaneClick event?</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Command Bars : Not getting PaneClick event?]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sun, 14 Jun 2026 13:48:15 +0000</pubDate>
  <lastBuildDate>Wed, 05 May 2010 15:47:34 +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=16621</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[Not getting PaneClick event? : Hi,  StatusBar.PaneClick += new...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16621&amp;PID=58343&amp;title=not-getting-paneclick-event#58343</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=979">blazej</a><br /><strong>Subject:</strong> 16621<br /><strong>Posted:</strong> 05 May 2010 at 3:47pm<br /><br />Hi,<br /><br />StatusBar.PaneClick += new XtremeCommandBars.IStatusBarEvents_PaneClickEventHandler(this.StatusBar_PaneClickEvent);<br /><br />and<br /><br />StatusBar.PaneClick += StatusBar_PaneClickEvent;<br /><br />are the same in C#.<br /><br />But the trick with using a class member instead of a local variable worked!  Can you explain this to me?  Normally it should matter at all if it is one or the other...  But maybe OCX are special...<br /><br />Best,<br />Michal]]>
   </description>
   <pubDate>Wed, 05 May 2010 15:47:34 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16621&amp;PID=58343&amp;title=not-getting-paneclick-event#58343</guid>
  </item> 
  <item>
   <title><![CDATA[Not getting PaneClick event? :  Actually, that still isn&amp;#039;t...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16621&amp;PID=58342&amp;title=not-getting-paneclick-event#58342</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=369">SuperMario</a><br /><strong>Subject:</strong> 16621<br /><strong>Posted:</strong> 05 May 2010 at 3:34pm<br /><br />Actually, that still isn't my code ;)<br><br>Notice where I declare Statusbar....I assumed the Public keyword would have given that away.&nbsp; You are re-declaring locally so it can't work.<br><br>&nbsp;&nbsp;&nbsp; public class frmMain : System.Windows.Forms.Form<br>&nbsp;&nbsp;&nbsp; {<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; public AxXtremeCommandBars.AxCommandBars CommandBars;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; private AxXtremeCommandBars.AxImageManager ImageManager;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; static public frmMain Instance;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; public XtremeCommandBars.StatusBar StatusBar;<br><br>......<br><br>Also the pane click handler is not as I wrote:<br><br>StatusBar.PaneClick += new XtremeCommandBars.IStatusBarEvents_PaneClickEventHandler(this.StatusBar_PaneClickEvent);<br><br>If you can't figure it out just attach the project and I'll fix it for you.<br>]]>
   </description>
   <pubDate>Wed, 05 May 2010 15:34:37 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16621&amp;PID=58342&amp;title=not-getting-paneclick-event#58342</guid>
  </item> 
  <item>
   <title><![CDATA[Not getting PaneClick event? : No luck.  Here&amp;#039;s my code:...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16621&amp;PID=58341&amp;title=not-getting-paneclick-event#58341</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=979">blazej</a><br /><strong>Subject:</strong> 16621<br /><strong>Posted:</strong> 05 May 2010 at 3:01pm<br /><br />No luck.<br /><br />Here's my code:<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_commandBars.LoadDesignerBars( null, null );<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// Status bar setup.<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;StatusBar statusBar = _commandBars.StatusBar;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;statusBar.PaneClick += OnStatusBarPaneClick;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;statusBar.Visible = true;<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;statusBar.AddPane( 0 );<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;StatusBarPane pane = statusBar.AddPane( ID.PANE_DATA_TYPE );<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;pane.Width = mainForm.StatusBarInfoPaneWidth;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;pane.Alignment = XTPTextAlignment.xtpAlignmentRight;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;pane.Text = string.Empty;<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;statusBar.AddPane( ID.PANE_INDICATOR_CAPS );<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;statusBar.AddPane( ID.PANE_INDICATOR_NUM );<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;statusBar.AddPane( ID.PANE_INDICATOR_SCRL );<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;StatusBarPane plotCreationPane = statusBar.AddPane( ID.PANE_DEBUG_PLOT_CREATION );<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;plotCreationPane.IconIndex = ID.CMD_DEBUG_PLOT_CREATION;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;plotCreationPane.Button = true;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;StatusBarPane dumpBeforePane = statusBar.AddPane( ID.PANE_DEBUG_DUMP_BEFORE );<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;dumpBeforePane.IconIndex = ID.CMD_DEBUG_DUMP_BEFORE;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;dumpBeforePane.Button = true;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;StatusBarPane dumpAfterPane = statusBar.AddPane( ID.PANE_DEBUG_DUMP_AFTER );<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;dumpAfterPane.IconIndex = ID.CMD_DEBUG_DUMP_AFTER;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;dumpAfterPane.Button = true;<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;SetChecked( ID.CMD_VIEW_STATUS_BAR, true );<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;SetChecked( ID.CMD_VIEW_TOOLBAR, true );<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;commandBars.GlobalSettings.App = mainForm;<br /><br />And then:<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; void OnStatusBarPaneClick( StatusBarPane pane )<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;pane.Checked = !pane.Checked;<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if( pane.Id == ID.PANE_DEBUG_PLOT_CREATION )<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  // ...<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br />]]>
   </description>
   <pubDate>Wed, 05 May 2010 15:01:00 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16621&amp;PID=58341&amp;title=not-getting-paneclick-event#58341</guid>
  </item> 
  <item>
   <title><![CDATA[Not getting PaneClick event? : Please add code exactly as I put...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16621&amp;PID=58339&amp;title=not-getting-paneclick-event#58339</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=369">SuperMario</a><br /><strong>Subject:</strong> 16621<br /><strong>Posted:</strong> 05 May 2010 at 2:48pm<br /><br />Please add code exactly as I put in previous threads and in this order:<br><br>public XtremeCommandBars.StatusBar StatusBar;<br><br>_CommandBars.LoadDesignerBars( null, null );<br><br>StatusBar = _CommandBars.StatusBar;<br>StatusBar.PaneClick += new XtremeCommandBars.IStatusBarEvents_PaneClickEventHandler(this.StatusBar_PaneClickEvent);<br>_CommandBars.StatusBar.Visible = true;<br><br> XtremeCommandBars.StatusBarPane Pane;<br>Pane = _commandBars.StatusBar.AddPane( 0 );<br><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; private void StatusBar_PaneClickEvent(XtremeCommandBars.StatusBarPane e)<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; {<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; System.Diagnostics.Debug.WriteLine ("PaneClick. Id = " + e.Id);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }<br><br><br>]]>
   </description>
   <pubDate>Wed, 05 May 2010 14:48:57 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16621&amp;PID=58339&amp;title=not-getting-paneclick-event#58339</guid>
  </item> 
  <item>
   <title><![CDATA[Not getting PaneClick event? : My order is different:  _commandBars.LoadDesignerBars(...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16621&amp;PID=58337&amp;title=not-getting-paneclick-event#58337</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=979">blazej</a><br /><strong>Subject:</strong> 16621<br /><strong>Posted:</strong> 05 May 2010 at 2:03pm<br /><br />My order is different:<br /><br />_commandBars.LoadDesignerBars( null, null );<br />_commandBars.StatusBar.Visible = true;<br />_commandBars.StatusBar.AddPane( 0 );<br />_commandBars.StatusBar.PaneClick += OnStatusBarPaneClick;<br /><br />If I move the event assignment up (before setting Visible) it is even worse, i.e. the event doesn't get fired even before a document is loaded.<br /><br />My panes are created and initialized AFTER the bars.<br /><br />Best,<br />Michal<br /><br />]]>
   </description>
   <pubDate>Wed, 05 May 2010 14:03:42 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16621&amp;PID=58337&amp;title=not-getting-paneclick-event#58337</guid>
  </item> 
  <item>
   <title><![CDATA[Not getting PaneClick event? : DesignerBars should make no difference,...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16621&amp;PID=58336&amp;title=not-getting-paneclick-event#58336</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=369">SuperMario</a><br /><strong>Subject:</strong> 16621<br /><strong>Posted:</strong> 05 May 2010 at 1:46pm<br /><br />DesignerBars should make no difference, so you have all the code I posted in that same order, except the for each?<br><br>Do you have this set after you add your status bar?&nbsp; Do you create the panes after the commandbars?<br><br>DockingPaneManager.SetCommandBars (CommandBars.GetDispatch());&nbsp;&nbsp; <br>]]>
   </description>
   <pubDate>Wed, 05 May 2010 13:46:24 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16621&amp;PID=58336&amp;title=not-getting-paneclick-event#58336</guid>
  </item> 
  <item>
   <title><![CDATA[Not getting PaneClick event? : Hi,  No, it&amp;#039;s not MDI.  We...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16621&amp;PID=58335&amp;title=not-getting-paneclick-event#58335</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=979">blazej</a><br /><strong>Subject:</strong> 16621<br /><strong>Posted:</strong> 05 May 2010 at 1:10pm<br /><br />Hi,<br /><br />No, it's not MDI.  We are using DockingPane with a single document window (and many additional panes).  Also, we load the command bars like this:<br /><br />_commandBars.LoadDesignerBars( null, null );<br /><br />Best,<br />Michal<br />]]>
   </description>
   <pubDate>Wed, 05 May 2010 13:10:59 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16621&amp;PID=58335&amp;title=not-getting-paneclick-event#58335</guid>
  </item> 
  <item>
   <title><![CDATA[Not getting PaneClick event? :  If this is MDI, be sure you...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16621&amp;PID=58334&amp;title=not-getting-paneclick-event#58334</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=369">SuperMario</a><br /><strong>Subject:</strong> 16621<br /><strong>Posted:</strong> 05 May 2010 at 12:58pm<br /><br />If this is MDI, be sure you do this:<br><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; foreach (Control ctrl in this.Controls)<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; {<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; if (ctrl is MdiClient)<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; {&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; CommandBars.SetMDIClient(ctrl.Handle.ToInt32());<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }<br><br>Then add status bar:<br><br>public XtremeCommandBars.StatusBar StatusBar;<br><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; StatusBar = CommandBars.StatusBar;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; StatusBar.PaneClick += new XtremeCommandBars.IStatusBarEvents_PaneClickEventHandler(this.StatusBar_PaneClickEvent);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; StatusBar.PaneDblClick += new XtremeCommandBars.IStatusBarEvents_PaneDblClickEventHandler(this.StatusBar_PaneDblClickEvent);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; StatusBar.MouseDown += new XtremeCommandBars.IStatusBarEvents_MouseDownEventHandler(this.StatusBar_MouseDownEvent);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; CommandBars.StatusBar.Visible = true;<br><br>Then add some pane:<br><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; XtremeCommandBars.StatusBarPane Pane;<br><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; Pane = StatusBar.AddPane(0);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; Pane.Style = XtremeCommandBars.XTPStatusPaneStyle.SBPS_STRETCH | XtremeCommandBars.XTPStatusPaneStyle.SBPS_NOBORDERS;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; Pane.Text = "Ready";<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; Pane.Width = 0; //Auto Size<br><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; private void StatusBar_PaneClickEvent(XtremeCommandBars.StatusBarPane e)<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; {<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; System.Diagnostics.Debug.WriteLine ("PaneClick. Id = " + e.Id);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }<br><br>.......................<br>]]>
   </description>
   <pubDate>Wed, 05 May 2010 12:58:14 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16621&amp;PID=58334&amp;title=not-getting-paneclick-event#58334</guid>
  </item> 
  <item>
   <title><![CDATA[Not getting PaneClick event? : Hi again,  Actually, it still...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16621&amp;PID=58320&amp;title=not-getting-paneclick-event#58320</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=979">blazej</a><br /><strong>Subject:</strong> 16621<br /><strong>Posted:</strong> 04 May 2010 at 10:12pm<br /><br />Hi again,<br /><br />Actually, it still doesn't work.  I get the event immediately after the application loads, but once I load some data, the event stops being fired.  I've searched through my code, but the only thing the action of loading data does is to change the text of another status bar pane.  Even if I comment out the code that changes the text, the event still does not get fired.<br /><br />Help, anyone?  What could be causing the event to stop firing?<br /><br />Michal]]>
   </description>
   <pubDate>Tue, 04 May 2010 22:12:41 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16621&amp;PID=58320&amp;title=not-getting-paneclick-event#58320</guid>
  </item> 
  <item>
   <title><![CDATA[Not getting PaneClick event? : Yeah, actually I tried it again,...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16621&amp;PID=58266&amp;title=not-getting-paneclick-event#58266</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=979">blazej</a><br /><strong>Subject:</strong> 16621<br /><strong>Posted:</strong> 28 April 2010 at 7:31pm<br /><br />Yeah, actually I tried it again, and it works.  The only thing I changed, I think, was the ID of the pane...<br /><br />Anyway, thanks Aaron!<br /><br />Michal]]>
   </description>
   <pubDate>Wed, 28 Apr 2010 19:31:35 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16621&amp;PID=58266&amp;title=not-getting-paneclick-event#58266</guid>
  </item> 
 </channel>
</rss>