<?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 : CXTPControlPopupColor - Single button</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Command Bars : CXTPControlPopupColor - Single button]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 10 Jun 2026 22:56:56 +0000</pubDate>
  <lastBuildDate>Tue, 04 Sep 2007 14:07:35 +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=7904</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[CXTPControlPopupColor - Single button : Thank you, that works perfectly....]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=7904&amp;PID=25553&amp;title=cxtpcontrolpopupcolor-single-button#25553</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3258">rupert</a><br /><strong>Subject:</strong> 7904<br /><strong>Posted:</strong> 04 September 2007 at 2:07pm<br /><br />Thank you, that works perfectly. I was failing to add the control to the command bar. ]]>
   </description>
   <pubDate>Tue, 04 Sep 2007 14:07:35 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=7904&amp;PID=25553&amp;title=cxtpcontrolpopupcolor-single-button#25553</guid>
  </item> 
  <item>
   <title><![CDATA[CXTPControlPopupColor - Single button : This code work for me. Try also...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=7904&amp;PID=25545&amp;title=cxtpcontrolpopupcolor-single-button#25545</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 7904<br /><strong>Posted:</strong> 04 September 2007 at 12:41pm<br /><br />This code work for me. Try also add RedrawBar in yours.<DIV>&nbsp;</DIV><DIV>Private Sub CommandBars1_Execute(ByVal Control As XtremeCommandBars.ICommandBarControl)<BR>&nbsp;&nbsp;&nbsp; If (Control.Id = 101) Then<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CommandBars1.ActiveMenuBar.Controls(1).Color = vbGreen<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CommandBars1.ActiveMenuBar.RedrawBar<BR>&nbsp;&nbsp;&nbsp; End If<BR>End Sub</DIV><DIV>Private Sub Form_Load()</DIV><DIV>Set CommandBars1.Icons = ImageManager1.Icons<BR>Dim ControlPopup As CommandBarPopup</DIV><DIV>Set ControlPopup = CommandBars1.CreateCommandBarControl("CXTPControlPopupColor")<BR>ControlPopup.Visible = False<BR>CommandBars1.ActiveMenuBar.Controls.AddControl ControlPopup<BR>ControlPopup.Id = 100<BR>ControlPopup.Color = vbRed</DIV><DIV>Set ControlPopup = CommandBars1.ActiveMenuBar.Controls.Add(xtpControlPopup, 100, "Icon")<BR>ControlPopup.Style = xtpButtonIcon</DIV><DIV>CommandBars1.ActiveMenuBar.Controls.Add xtpControlButton, 101, "Change"</DIV><DIV><BR>End Sub<BR></DIV>]]>
   </description>
   <pubDate>Tue, 04 Sep 2007 12:41:58 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=7904&amp;PID=25545&amp;title=cxtpcontrolpopupcolor-single-button#25545</guid>
  </item> 
  <item>
   <title><![CDATA[CXTPControlPopupColor - Single button : Thank you for the suggestion however...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=7904&amp;PID=25541&amp;title=cxtpcontrolpopupcolor-single-button#25541</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3258">rupert</a><br /><strong>Subject:</strong> 7904<br /><strong>Posted:</strong> 04 September 2007 at 10:44am<br /><br />Thank you for the suggestion however I am unable to make it work. The icon color does not update. It remains the same.<DIV>&nbsp;</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Tue, 04 Sep 2007 10:44:14 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=7904&amp;PID=25541&amp;title=cxtpcontrolpopupcolor-single-button#25541</guid>
  </item> 
  <item>
   <title><![CDATA[CXTPControlPopupColor - Single button : Hi, As quite weird trick you...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=7904&amp;PID=25512&amp;title=cxtpcontrolpopupcolor-single-button#25512</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 7904<br /><strong>Posted:</strong> 03 September 2007 at 7:37am<br /><br />Hi,<DIV>As quite weird trick you can add standard popup button + hidden CXTPControlPopupColor&nbsp; with same id. </DIV><DIV>change Color property of hidden CXTPControlPopupColor&nbsp; and it will change icon of your popup. Think can work.</DIV>]]>
   </description>
   <pubDate>Mon, 03 Sep 2007 07:37:50 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=7904&amp;PID=25512&amp;title=cxtpcontrolpopupcolor-single-button#25512</guid>
  </item> 
  <item>
   <title><![CDATA[CXTPControlPopupColor - Single button : Is it possible to get a regular...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=7904&amp;PID=25440&amp;title=cxtpcontrolpopupcolor-single-button#25440</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3258">rupert</a><br /><strong>Subject:</strong> 7904<br /><strong>Posted:</strong> 30 August 2007 at 4:29pm<br /><br />Is it possible to get a regular popup which can reflect the color selected in the picker?<DIV>&nbsp;</DIV><DIV>CXTPControlPopupColor creates a split-button color control. I don't want it to be a split button.</DIV><DIV>&nbsp;</DIV><DIV>Thanks.</DIV>]]>
   </description>
   <pubDate>Thu, 30 Aug 2007 16:29:31 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=7904&amp;PID=25440&amp;title=cxtpcontrolpopupcolor-single-button#25440</guid>
  </item> 
 </channel>
</rss>