<?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 : Commandbar Styles</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Command Bars : Commandbar Styles]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 13 May 2026 05:40:00 +0000</pubDate>
  <lastBuildDate>Fri, 15 Oct 2004 13:23:41 +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=1232</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[Commandbar Styles : What is you question? You code...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1232&amp;PID=3523&amp;title=commandbar-styles#3523</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=369">SuperMario</a><br /><strong>Subject:</strong> 1232<br /><strong>Posted:</strong> 15 October 2004 at 1:23pm<br /><br />What is you question?&nbsp; You code looks fine ****Edit:&nbsp; I seenow, the above post is to use Office 2003 colors when the applicationis running in an OS other than Windows XP****<br><span style="font-size:10px"><br /><br />Edited by SuperMario</span>]]>
   </description>
   <pubDate>Fri, 15 Oct 2004 13:23:41 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1232&amp;PID=3523&amp;title=commandbar-styles#3523</guid>
  </item> 
  <item>
   <title><![CDATA[Commandbar Styles : private Sub ThemeOffice2003Ex()...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1232&amp;PID=3521&amp;title=commandbar-styles#3521</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=774">hoanganh</a><br /><strong>Subject:</strong> 1232<br /><strong>Posted:</strong> 15 October 2004 at 1:14pm<br /><br /><P>private Sub ThemeOffice2003Ex()<BR>&nbsp;&nbsp;&nbsp; Const COLOR_SCROLLBAR = 0<BR>&nbsp;&nbsp;&nbsp; Const COLOR_3DDKSHADOW = 21<BR>&nbsp;&nbsp;&nbsp; Const COLOR_3DLIGHT = 22<BR>&nbsp;&nbsp;&nbsp; Const COLOR_INFOTEXT = 23<BR>&nbsp;&nbsp;&nbsp; Const COLOR_INFOBK = 24<BR>&nbsp;&nbsp;&nbsp; Const COLOR_HOTLIGHT = 26<BR>&nbsp;&nbsp;&nbsp; Const COLOR_GRADIENTACTIVECAPTION = 27<BR>&nbsp;&nbsp;&nbsp; Const COLOR_GRADIENTINACTIVECAPTION = 28<BR>&nbsp;&nbsp;&nbsp; Const XPCOLOR_CHECKED_TEXT = XPCOLOR_HIGHLIGHT_TEXT<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; Const COLOR_BACKGROUND = 1<BR>&nbsp;&nbsp;&nbsp; Const COLOR_ACTIVECAPTION = 2<BR>&nbsp;&nbsp;&nbsp; Const COLOR_INACTIVECAPTION = 3<BR>&nbsp;&nbsp;&nbsp; Const COLOR_MENU = 4<BR>&nbsp;&nbsp;&nbsp; Const COLOR_WINDOW = 5<BR>&nbsp;&nbsp;&nbsp; Const COLOR_WINDOWFRAME = 6<BR>&nbsp;&nbsp;&nbsp; Const COLOR_MENUTEXT = 7<BR>&nbsp;&nbsp;&nbsp; Const COLOR_WINDOWTEXT = 8<BR>&nbsp;&nbsp;&nbsp; Const COLOR_CAPTIONTEXT = 9<BR>&nbsp;&nbsp;&nbsp; Const COLOR_ACTIVEBORDER = 10<BR>&nbsp;&nbsp;&nbsp; Const COLOR_INACTIVEBORDER = 11<BR>&nbsp;&nbsp;&nbsp; Const COLOR_APPWORKSPACE = 12<BR>&nbsp;&nbsp;&nbsp; Const COLOR_HIGHLIGHT = 13<BR>&nbsp;&nbsp;&nbsp; Const COLOR_HIGHLIGHTTEXT = 14<BR>&nbsp;&nbsp;&nbsp; Const COLOR_BTNFACE = 15<BR>&nbsp;&nbsp;&nbsp; Const COLOR_BTNSHADOW = 16<BR>&nbsp;&nbsp;&nbsp; Const COLOR_GRAYTEXT = 17<BR>&nbsp;&nbsp;&nbsp; Const COLOR_BTNTEXT = 18<BR>&nbsp;&nbsp;&nbsp; Const COLOR_INACTIVECAPTIONTEXT = 19<BR>&nbsp;&nbsp;&nbsp; Const COLOR_BTNHIGHLIGHT = 20<BR>&nbsp;&nbsp;&nbsp; Const XPCOLOR_LABEL = 56<BR>&nbsp;&nbsp;&nbsp; Const XPCOLOR_EDITCTRLBORDER = 53<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; CommandBars.VisualTheme = xtpThemeOffice2003</P><P>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor COLOR_SCROLLBAR, 0<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor COLOR_BACKGROUND, 10841658<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor COLOR_ACTIVECAPTION, 6956042<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor COLOR_INACTIVECAPTION, 8421504<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor COLOR_MENU, 13160660<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor COLOR_WINDOW, 16777215<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor COLOR_WINDOWFRAME, 0<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor COLOR_MENUTEXT, 0<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor COLOR_WINDOWTEXT, 0<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor COLOR_CAPTIONTEXT, 16777215<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor COLOR_ACTIVEBORDER, 13160660<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor COLOR_INACTIVEBORDER, 13160660<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor COLOR_APPWORKSPACE, 8421504<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor COLOR_HIGHLIGHT, 6956042<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor COLOR_HIGHLIGHTTEXT, 16777215<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor COLOR_BTNFACE, 16105375<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor COLOR_BTNSHADOW, 14964742<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor COLOR_GRAYTEXT, 8421504<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor COLOR_BTNTEXT, 0<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor COLOR_INACTIVECAPTIONTEXT, 13160660<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor COLOR_BTNHIGHLIGHT, 16777215<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor COLOR_3DDKSHADOW, 4210752<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor COLOR_3DLIGHT, 14147555<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor COLOR_INFOTEXT, 0<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor COLOR_INFOBK, 14811135<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor COLOR_HOTLIGHT, 8388608<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor COLOR_GRADIENTACTIVECAPTION, 15780518<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor COLOR_GRADIENTINACTIVECAPTION, 0<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor XPCOLOR_TOOLBAR_FACE, 16105375<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor XPCOLOR_HIGHLIGHT, 12775167<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor XPCOLOR_HIGHLIGHT_BORDER, 14898176<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor XPCOLOR_HIGHLIGHT_PUSHED, 4096254<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor XPCOLOR_HIGHLIGHT_CHECKED, 7323903<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor XPCOLOR_HIGHLIGHT_CHECKED_BORDER, 14898176<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor XPCOLOR_ICONSHADDOW, 10325384<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor XPCOLOR_GRAYTEXT, 10921638<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor XPCOLOR_TOOLBAR_GRIPPER, 14964742<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor XPCOLOR_SEPARATOR, 15903360<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor XPCOLOR_DISABLED, 9276813<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor XPCOLOR_MENUBAR_FACE, 16251129<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor XPCOLOR_MENUBAR_EXPANDED, 12699852<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor XPCOLOR_MENUBAR_BORDER, 6710886<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor XPCOLOR_MENUBAR_TEXT, 0<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor XPCOLOR_HIGHLIGHT_TEXT, 0<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor XPCOLOR_TOOLBAR_FACE, 16105375<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor XPCOLOR_TOOLBAR_TEXT, 0<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor XPCOLOR_PUSHED_TEXT, 16777215<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor XPCOLOR_TAB_INACTIVE_BACK, 15332087<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor XPCOLOR_TAB_INACTIVE_TEXT, 5592405<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor XPCOLOR_HIGHLIGHT_PUSHED_BORDER, 14898176<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor XPCOLOR_CHECKED_TEXT, 0<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor XPCOLOR_3DFACE, 13160660<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor XPCOLOR_3DSHADOW, 8421504<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor XPCOLOR_EDITCTRLBORDER, 13752539<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor XPCOLOR_FRAME, 8421504<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor XPCOLOR_SPLITTER_FACE, 16053750<BR>&nbsp;&nbsp;&nbsp; CommandBars.SetSpecialColor XPCOLOR_LABEL, 13160660<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; CommandBars.Options.LunaColors = False<BR>&nbsp;&nbsp;&nbsp; CommandBars.RecalcLayout<BR>End Sub</P><span style="font-size:10px"><br /><br />Edited by hoanganh</span>]]>
   </description>
   <pubDate>Fri, 15 Oct 2004 13:14:12 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1232&amp;PID=3521&amp;title=commandbar-styles#3521</guid>
  </item> 
  <item>
   <title><![CDATA[Commandbar Styles : Thanks, worked like a charm! ...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1232&amp;PID=3328&amp;title=commandbar-styles#3328</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=754">Trond</a><br /><strong>Subject:</strong> 1232<br /><strong>Posted:</strong> 04 October 2004 at 10:05am<br /><br /><P>Thanks, worked like a charm!</P><P>&nbsp;</P>]]>
   </description>
   <pubDate>Mon, 04 Oct 2004 10:05:24 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1232&amp;PID=3328&amp;title=commandbar-styles#3328</guid>
  </item> 
  <item>
   <title><![CDATA[Commandbar Styles : CommandBars.Options.LunaColors...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1232&amp;PID=3324&amp;title=commandbar-styles#3324</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=369">SuperMario</a><br /><strong>Subject:</strong> 1232<br /><strong>Posted:</strong> 04 October 2004 at 6:51am<br /><br />CommandBars.Options.LunaColors = False]]>
   </description>
   <pubDate>Mon, 04 Oct 2004 06:51:09 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1232&amp;PID=3324&amp;title=commandbar-styles#3324</guid>
  </item> 
  <item>
   <title><![CDATA[Commandbar Styles : I like theCommandBar xtpThemeOffice2003...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1232&amp;PID=3318&amp;title=commandbar-styles#3318</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=754">Trond</a><br /><strong>Subject:</strong> 1232<br /><strong>Posted:</strong> 04 October 2004 at 3:56am<br /><br /><P>I like the&nbsp;CommandBar xtpThemeOffice2003 style when&nbsp;XPTheme is disabled.</P><P>The problem is when the user enable themes it would change color to blue. I dont want the&nbsp;color to change. Is there a way to&nbsp;use the "xtpThemeOffice2003 style /XPTheme disabled" permanent, regardless of XPTheme enabled/disabled? </P><P>Thank you<BR>Trond Eirik Paulsen</P><P>&nbsp;</P>]]>
   </description>
   <pubDate>Mon, 04 Oct 2004 03:56:16 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1232&amp;PID=3318&amp;title=commandbar-styles#3318</guid>
  </item> 
 </channel>
</rss>