<?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 : Command Routing to panes</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Docking Pane : Command Routing to panes]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Thu, 14 May 2026 04:19:20 +0000</pubDate>
  <lastBuildDate>Wed, 28 Apr 2010 08:55:33 +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=14259</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[Command Routing to panes : Why isn&amp;#039;t this build in? DockingPaneManager...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14259&amp;PID=58257&amp;title=command-routing-to-panes#58257</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2070">Marcus</a><br /><strong>Subject:</strong> 14259<br /><strong>Posted:</strong> 28 April 2010 at 8:55am<br /><br />Why isn't this build in?<DIV>DockingPaneManager should simply route to the active pane, if there is one,</DIV><DIV>and a pane should route to its child window, if there is one.</DIV><DIV>Then the frame window could just call panemanager.OnCmdMsg.</DIV>]]>
   </description>
   <pubDate>Wed, 28 Apr 2010 08:55:33 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14259&amp;PID=58257&amp;title=command-routing-to-panes#58257</guid>
  </item> 
  <item>
   <title><![CDATA[Command Routing to panes :  Can someone please point me...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14259&amp;PID=50780&amp;title=command-routing-to-panes#50780</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=5368">Albertb</a><br /><strong>Subject:</strong> 14259<br /><strong>Posted:</strong> 08 July 2009 at 9:59am<br /><br />Can someone please point me to that sample in a clearer way.&nbsp; Probably my stupidity but I can't find it anywhere!&nbsp; Many thanks.<br><br>Yup!&nbsp; True to form, it was my stupidity.&nbsp; I've got it now thanks, no need to reply unless to be scalding and scathing <img src="http://forum.codejock.com/smileys/smiley5.gif" border="0" align="absmiddle"> <img src="http://forum.codejock.com/smileys/smiley2.gif" border="0" align="absmiddle"><br>]]>
   </description>
   <pubDate>Wed, 08 Jul 2009 09:59:08 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14259&amp;PID=50780&amp;title=command-routing-to-panes#50780</guid>
  </item> 
  <item>
   <title><![CDATA[Command Routing to panes : Hi,  Check Samples\DockingPane\ActivePaneView...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14259&amp;PID=48885&amp;title=command-routing-to-panes#48885</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 14259<br /><strong>Posted:</strong> 12 May 2009 at 2:15am<br /><br />Hi,<DIV>&nbsp;</DIV><DIV>Check Samples\DockingPane\ActivePaneView&nbsp; sample.</DIV>]]>
   </description>
   <pubDate>Tue, 12 May 2009 02:15:29 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14259&amp;PID=48885&amp;title=command-routing-to-panes#48885</guid>
  </item> 
  <item>
   <title><![CDATA[Command Routing to panes : Hi all,  I have an application...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14259&amp;PID=48843&amp;title=command-routing-to-panes#48843</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=5078">Bart6</a><br /><strong>Subject:</strong> 14259<br /><strong>Posted:</strong> 11 May 2009 at 4:59am<br /><br />Hi all,<br /><br />I have an application that uses Panes (copied from the  Ribbon sample).  I want the panes to be able to react to commands from the ribbon, so i put a OnCmdMsg handler in the mainframe that gives the panes a shot at the commands, before they are send through the regular handler. (see code below)<br /><br />So here is the question: is this the right approach?<br /><br />Thanks<br />Bart<br /><br /><br /><br /><font face="Courier New, Courier, mono">BOOL CMainFrame::OnCmdMsg(UINT nID, int nCode, void* pExtra, AFX_CMDHANDLERINFO* pHandlerInfo)<br />{ <br />&nbsp;&nbsp;&nbsp;// We want to pane to also be able to react to commands.<br />&nbsp;&nbsp;&nbsp;if (m_paneScenes.OnCmdMsg(nID, nCode, pExtra, pHandlerInfo))<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return TRUE;<br /><br />&nbsp;&nbsp;&nbsp;return __super::OnCmdMsg(nID, nCode, pExtra, pHandlerInfo);<br />}</font>]]>
   </description>
   <pubDate>Mon, 11 May 2009 04:59:29 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14259&amp;PID=48843&amp;title=command-routing-to-panes#48843</guid>
  </item> 
 </channel>
</rss>