<?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 : CXTPControlComboBox inside a CXTPToolBar</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Toolkit Pro : CXTPControlComboBox inside a CXTPToolBar]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Thu, 11 Jun 2026 11:03:07 +0000</pubDate>
  <lastBuildDate>Thu, 26 Jun 2008 06:56: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=9470</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[CXTPControlComboBox inside a CXTPToolBar : I do the same, but it can not...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=9470&amp;PID=37428&amp;title=cxtpcontrolcombobox-inside-a-cxtptoolbar#37428</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4196">tataxin</a><br /><strong>Subject:</strong> 9470<br /><strong>Posted:</strong> 26 June 2008 at 6:56am<br /><br />I do the same, but it can not work with thi command:<br /><br />m_cbNet = new CXTPControlComboBox();<br /><br />How can you do that? where is m_cbNet declarated?<br />Thank you in advance.]]>
   </description>
   <pubDate>Thu, 26 Jun 2008 06:56:19 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=9470&amp;PID=37428&amp;title=cxtpcontrolcombobox-inside-a-cxtptoolbar#37428</guid>
  </item> 
  <item>
   <title><![CDATA[CXTPControlComboBox inside a CXTPToolBar : I found it!you just call:m_pNe...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=9470&amp;PID=30739&amp;title=cxtpcontrolcombobox-inside-a-cxtptoolbar#30739</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3715">stringarray</a><br /><strong>Subject:</strong> 9470<br /><strong>Posted:</strong> 01 February 2008 at 5:15pm<br /><br />I found it!<br>you just call:<br><pre ="BBcode">m_pNetToolBar-&gt;SetBarID(IDR_TOOLBAR_NETWORKINTERFACE);</pre><br>Instead of "LoadToolbar". <img src="http://forum.codejock.com/smileys/smiley4.gif" border="0" align="absmiddle"><br>]]>
   </description>
   <pubDate>Fri, 01 Feb 2008 17:15:46 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=9470&amp;PID=30739&amp;title=cxtpcontrolcombobox-inside-a-cxtptoolbar#30739</guid>
  </item> 
  <item>
   <title><![CDATA[CXTPControlComboBox inside a CXTPToolBar : Also, is there a way to put a...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=9470&amp;PID=30731&amp;title=cxtpcontrolcombobox-inside-a-cxtptoolbar#30731</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3715">stringarray</a><br /><strong>Subject:</strong> 9470<br /><strong>Posted:</strong> 01 February 2008 at 12:21pm<br /><br />Also, is there a way to put a regular MFC CComboBox in a CXTPToolBar?&nbsp;]]>
   </description>
   <pubDate>Fri, 01 Feb 2008 12:21:01 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=9470&amp;PID=30731&amp;title=cxtpcontrolcombobox-inside-a-cxtptoolbar#30731</guid>
  </item> 
  <item>
   <title><![CDATA[CXTPControlComboBox inside a CXTPToolBar : Hello, I&amp;#039;m trying to put...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=9470&amp;PID=30730&amp;title=cxtpcontrolcombobox-inside-a-cxtptoolbar#30730</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3715">stringarray</a><br /><strong>Subject:</strong> 9470<br /><strong>Posted:</strong> 01 February 2008 at 12:11pm<br /><br />Hello, I'm trying to put a CXTPControlComboBox inside a CXTPToolBar, by itself, with no buttons or other controls. <br><br>I did it so far with this:<br><table width="99%"><tr><td><pre class="BBcode"><br>m_pNetToolBar = ( CXTPToolBar* ) pCommandBars-&gt;Add(_T("Network"), xtpBarTop);<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; if(!m_pNetToolBar || !m_pNetToolBar-&gt;LoadToolBar(IDR_TOOLBAR_NETWORK) )<br>&nbsp;&nbsp;&nbsp; {<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; TRACE0("Failed to create toolbar\n");<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; return false;<br>&nbsp;&nbsp;&nbsp; }<br>&nbsp;&nbsp;&nbsp; m_cbNet = new CXTPControlComboBox();<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; m_pNetToolBar-&gt;GetControls()-&gt;Add(m_cbNet, IDC_COMBO_NETWORK, i_L(""));<br><br></pre></td></tr></table><br><br>the problem is, when I call "LoadToolbar" using resource IDR_TOOLBAR_NETWORK, a toolbar with an empty button is loaded from resource, and I cannot delete that button from the resource toolbar because I get a message saying "empty toolbars not allowed". So I get a toolbar with a button and the combobox.<br><br>How do I create a toolbar with a combobox only?<br>]]>
   </description>
   <pubDate>Fri, 01 Feb 2008 12:11:23 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=9470&amp;PID=30730&amp;title=cxtpcontrolcombobox-inside-a-cxtptoolbar#30730</guid>
  </item> 
 </channel>
</rss>