<?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 : TrackPopupMenu parameters</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Toolkit Pro : TrackPopupMenu parameters]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Tue, 21 Apr 2026 11:39:14 +0000</pubDate>
  <lastBuildDate>Tue, 22 Mar 2005 05:53:10 +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=1981</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[TrackPopupMenu parameters : Try to dublicate OnCreateControl...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1981&amp;PID=5867&amp;title=trackpopupmenu-parameters#5867</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 1981<br /><strong>Posted:</strong> 22 March 2005 at 5:53am<br /><br />Try to dublicate OnCreateControl code to your view.]]>
   </description>
   <pubDate>Tue, 22 Mar 2005 05:53:10 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1981&amp;PID=5867&amp;title=trackpopupmenu-parameters#5867</guid>
  </item> 
  <item>
   <title><![CDATA[TrackPopupMenu parameters : That&amp;#039;s correct  ]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1981&amp;PID=5812&amp;title=trackpopupmenu-parameters#5812</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1045">binaryc</a><br /><strong>Subject:</strong> 1981<br /><strong>Posted:</strong> 18 March 2005 at 10:42am<br /><br />That's correct]]>
   </description>
   <pubDate>Fri, 18 Mar 2005 10:42:54 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1981&amp;PID=5812&amp;title=trackpopupmenu-parameters#5812</guid>
  </item> 
  <item>
   <title><![CDATA[TrackPopupMenu parameters : &amp;#034;except the non-button controls...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1981&amp;PID=5791&amp;title=trackpopupmenu-parameters#5791</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 1981<br /><strong>Posted:</strong> 18 March 2005 at 12:21am<br /><br />"except the non-button controls appear as buttons."&nbsp;&nbsp; so you convert them in OnCreateControl handler? ]]>
   </description>
   <pubDate>Fri, 18 Mar 2005 00:21:50 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1981&amp;PID=5791&amp;title=trackpopupmenu-parameters#5791</guid>
  </item> 
  <item>
   <title><![CDATA[TrackPopupMenu parameters : I&amp;#039;m not really sure what...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1981&amp;PID=5787&amp;title=trackpopupmenu-parameters#5787</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1045">binaryc</a><br /><strong>Subject:</strong> 1981<br /><strong>Posted:</strong> 17 March 2005 at 3:29pm<br /><br /><p>I'm not really sure what I should pass as the parameters for CXTPComamndBars::TrackPopupMenu.<br></p><p>The problem:<br>I have a (split) view inside a frame. My context menu has some non-button controls on it (a button popup).<br></p><p>The following combinations cause the menu to work fine, except the non-button controls appear as buttons.</p><p>- view as pWnd, null as pWndOwner, null as pCommandBars<br>- frame as pWnd, view as pWndOwner, null as pCommandBars<br>- frame as pWnd, view as pWndOwner, frame-&gt;GetCommmandBar() as pCommandBars<br>- null as pWnd, view as pWndOwner, frame-&gt;GetCommmandBar() as pCommandBars<br></p><p>All of the following combinations cause the split button to appear correctly, but the view doesn't get WM_COMMAND messages:<br><br>- frame as pWnd, null as pWndOwner, null as pCommandBars<br>- view as pWnd, frame as pWndOwner, null as pCommandBars<br>- view as pWnd, null as pWndOwner, frame-&gt;GetCommmandBar() as pCommandBars<br>- null as pWnd, null as pWndOwner, frame-&gt;GetCommmandBar() as pCommandBars<br></p><p>From what I can tell, pWnd is the window that gets the messages,unless pWndOwner is non-null, in which case that's the window that getsthe messages, unless pCommandBars is non-null, and pWndOwner is null,in which case the owner of the command bars gets the message<br></p><p>If this is the case, then it seems pCommandBars and pWndOwner aremutually-exclusive.&nbsp; If that is true, then there should really betwo overloaded functions rather than one function that takes bothparamaters.&nbsp; It also seems that if either pWndOwner orpCommandBars are set then pWnd gets ignored.<br></p><p>Is what I'm trying to do possible?&nbsp; If so, what's the proper set of arguments to pass?<br></p><p>The documentation is unhelpful in this situation and none of the samples appear to try to do something like this.<br><br></p><!-- Signature -->]]>
   </description>
   <pubDate>Thu, 17 Mar 2005 15:29:21 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1981&amp;PID=5787&amp;title=trackpopupmenu-parameters#5787</guid>
  </item> 
 </channel>
</rss>