<?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 : Custom Theme Support Sample</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Suite Pro : Custom Theme Support Sample]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 27 May 2026 16:25:02 +0000</pubDate>
  <lastBuildDate>Sat, 02 Apr 2005 20:08:09 +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=1996</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[Custom Theme Support Sample : Private Sub Form_Load()fnCriarMenufnConfiguraCorEnd...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1996&amp;PID=6074&amp;title=custom-theme-support-sample#6074</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1083">alfredorcamara</a><br /><strong>Subject:</strong> 1996<br /><strong>Posted:</strong> 02 April 2005 at 8:08pm<br /><br /><P>Private Sub Form_Load()<BR>fnCriarMenu<BR>fnConfiguraCor<BR>End Sub<BR></P><P>Function fnCriarMenu()<BR>Dim Control As CommandBarControl<BR>Dim ControlFile As CommandBarPopup, ControlEdit As CommandBarPopup, ControlView As CommandBarPopup<BR>Dim ControlWindow As CommandBarPopup, ControlHelp As CommandBarPopup<BR>'----------------------------------------------------------- ---------------------------------------- <BR>'Configurações Iniciais<BR>'----------------------------------------------------------- ---------------------------------------- <BR>CommandBarsGlobalSettings.App = App</P><P>'----------------------------------------------------------- ---------------------------------------- <BR>'Menu de Arquivo<BR>'----------------------------------------------------------- ---------------------------------------- <BR>Set ControlFile = CommandBars.ActiveMenuBar.Controls.Add(xtpControlPopup, 0, "&amp;Arquivo", -1, False)<BR>With ControlFile.CommandBar.Controls<BR>&nbsp;&nbsp;&nbsp; Set Control = .Add(xtpControlButton, ID_ARQUIVO_NOVO, "&amp;Nova", -1, False)<BR>&nbsp;&nbsp;&nbsp; .Add xtpControlButton, ID_ARQUIVO_CONFIRMAR, "Confirmar", -1, False<BR>&nbsp;&nbsp;&nbsp; 'Separador<BR>&nbsp;&nbsp;&nbsp; Set Control = .Add(xtpControlButton, ID_ARQUIVO_CUSTOMISE, "Cus&amp;tomizar", -1, False)<BR>&nbsp;&nbsp;&nbsp; Control.BeginGroup = True<BR>&nbsp;&nbsp;&nbsp; .Add xtpControlButton, ID_ARQUIVO_GERENCIADOR, "&amp;Gerenciador", -1, False<BR>&nbsp;&nbsp;&nbsp; 'separador<BR>&nbsp;&nbsp;&nbsp; Set Control = .Add(xtpControlButton, ID_ARQUIVO_PRINTSETUP, "Configurar &amp;Impressora...", -1, False)<BR>&nbsp;&nbsp;&nbsp; Control.BeginGroup = True<BR>&nbsp;&nbsp;&nbsp; 'Separador<BR>&nbsp;&nbsp;&nbsp; Set Control = .Add(xtpControlButton, ID_ARQUIVO_FECHAR, "&amp;Fechar", -1, False)<BR>&nbsp;&nbsp;&nbsp; Control.BeginGroup = True<BR>End With<BR>'Configura Teclas de Atalho<BR>CommandBars.KeyBindings.Add FCONTROL, Asc("N"), ID_ARQUIVO_NOVO<BR>CommandBars.KeyBindings.Add 0, VK_F2, ID_ARQUIVO_CONFIRMAR<BR>CommandBars.KeyBindings.Add FCONTROL, Asc("T"), ID_ARQUIVO_CUSTOMISE<BR>CommandBars.KeyBindings.Add FCONTROL, Asc("G"), ID_ARQUIVO_GERENCIADOR<BR>CommandBars.KeyBindings.Add FCONTROL, Asc("I"), ID_ARQUIVO_PRINTSETUP<BR>CommandBars.KeyBindings.Add 0, VK_ESCAPE, ID_ARQUIVO_FECHAR<BR>'----------------------------------------------------------- ---------------------------------------- <BR>'Menu Editar<BR>'----------------------------------------------------------- ---------------------------------------- <BR>Set ControlEdit = CommandBars.ActiveMenuBar.Controls.Add(xtpControlPopup, 0, "&amp;Editar", -1, False)<BR>With ControlEdit.CommandBar.Controls<BR>&nbsp;&nbsp;&nbsp; .Add xtpControlButton, ID_EDIT_UNDO, "&amp;Desfazer", -1, False<BR>&nbsp;&nbsp;&nbsp; 'Separador<BR>&nbsp;&nbsp;&nbsp; Set Control = .Add(xtpControlButton, ID_EDIT_CUT, "&amp;Recortar", -1, False)<BR>&nbsp;&nbsp;&nbsp; Control.BeginGroup = True<BR>&nbsp;&nbsp;&nbsp; .Add xtpControlButton, ID_EDIT_COPY, "&amp;Copiar", -1, False<BR>&nbsp;&nbsp;&nbsp; .Add xtpControlButton, ID_EDIT_PASTE, "Co&amp;lar", -1, False<BR>End With<BR>'Configura Teclas de Atalho<BR>CommandBars.KeyBindings.Add FCONTROL, Asc("Z"), ID_EDIT_UNDO<BR>CommandBars.KeyBindings.Add FCONTROL, Asc("X"), ID_EDIT_CUT<BR>CommandBars.KeyBindings.Add FCONTROL, Asc("C"), ID_EDIT_COPY<BR>CommandBars.KeyBindings.Add FCONTROL, Asc("V"), ID_EDIT_PASTE<BR>'----------------------------------------------------------- ---------------------------------------- <BR>'Menu Ferramentas<BR>'----------------------------------------------------------- ---------------------------------------- <BR>Set ControlFerramentas = CommandBars.ActiveMenuBar.Controls.Add(xtpControlPopup, 0, "&amp;Ferramentas", -1, False)<BR>With ControlFerramentas.CommandBar.Controls<BR>&nbsp;&nbsp;&nbsp; Set Control = .Add(xtpControlPopup, 0, "Microsoft &amp;Office", -1, False)<BR>&nbsp;&nbsp;&nbsp; Control.CommandBar.Controls.Add xtpControlButton, ID_FERRAMENTAS_OFFICE_EXCEL, "Microsoft Office &amp;Excel", -1, False<BR>&nbsp;&nbsp;&nbsp; Control.CommandBar.Controls.Add xtpControlButton, ID_FERRAMENTAS_OFFICE_WORD, "Microsoft Office &amp;Word", -1, False<BR>&nbsp;&nbsp;&nbsp; Control.CommandBar.Controls.Add xtpControlButton, ID_FERRAMENTAS_OFFICE_OUTLOOK, "Microsoft Office &amp;Outlook", -1, False<BR>&nbsp;&nbsp;&nbsp; Control.CommandBar.Controls.Add xtpControlButton, ID_FERRAMENTAS_OFFICE_POWERPOINT, "Microsoft Office &amp;PowerPoint", -1, False<BR>&nbsp;&nbsp;&nbsp; Set Control = .Add(xtpControlButton, ID_FERRAMENTAS_CALCULATOR, "&amp;Calculadora", -1, False)<BR>&nbsp;&nbsp;&nbsp; Control.BeginGroup = True<BR>&nbsp;&nbsp;&nbsp; .Add xtpControlButton, ID_FERRAMENTAS_NOTEPAD, "&amp;Bloco de notas", -1, False<BR>&nbsp;&nbsp;&nbsp; .Add xtpControlButton, ID_FERRAMENTAS_WORDPAD, "&amp;WordPad", -1, False<BR>&nbsp;&nbsp;&nbsp; .Add xtpControlButton, ID_FERRAMENTAS_ChARMAP, "&amp;Mapa de caracteres", -1, False<BR>&nbsp;&nbsp;&nbsp; Set Control = .Add(xtpControlButton, ID_FERRAMENTAS_EXPLORER, "&amp;Windows Explorer", -1, False)<BR>&nbsp;&nbsp;&nbsp; .Add xtpControlButton, ID_FERRAMENTAS_IEXPLORER, "&amp;Internet Explorer", -1, False<BR>&nbsp;&nbsp;&nbsp; Control.BeginGroup = True<BR>End With<BR>'----------------------------------------------------------- ---------------------------------------- <BR>'Menu Relatório<BR>'----------------------------------------------------------- ---------------------------------------- <BR>Set ControlRelatorio = CommandBars.ActiveMenuBar.Controls.Add(xtpControlPopup, 0, "&amp;Relatórios", -1, False)<BR>With ControlRelatorio.CommandBar.Controls<BR>&nbsp;&nbsp;&nbsp; .Add xtpControlButton, ID_RELATORIO_ENTREGA, "&amp;Comprovante de Entrega", -1, False<BR>&nbsp;&nbsp;&nbsp; .Add xtpControlButton, ID_RELATORIO_CONTRATO, "Comprovante com Con&amp;trato", -1, False<BR>&nbsp;&nbsp;&nbsp; 'Separador<BR>&nbsp;&nbsp;&nbsp; Set Control = .Add(xtpControlButton, ID_RELATORIO_ORCAMENTO, "&amp;Orçamento", -1, False)<BR>&nbsp;&nbsp;&nbsp; Control.BeginGroup = True<BR>End With<BR>'----------------------------------------------------------- ---------------------------------------- <BR>'Menu Ajuda<BR>'----------------------------------------------------------- ---------------------------------------- <BR>Set ControlAjuda = CommandBars.ActiveMenuBar.Controls.Add(xtpControlPopup, 0, "&amp;Ajuda", -1, False)<BR>With ControlAjuda.CommandBar.Controls<BR>&nbsp;&nbsp;&nbsp; .Add xtpControlButton, ID_AJUDA_CONTESTO, "&amp;Contesto", -1, False<BR>&nbsp;&nbsp;&nbsp; 'Separador<BR>&nbsp;&nbsp;&nbsp; Set Control = .Add(xtpControlButton, ID_AJUDA_SOBRE, "&amp;Sobre...", -1, False)<BR>&nbsp;&nbsp;&nbsp; Control.BeginGroup = True<BR>End With<BR>'Configura Teclas de Atalho<BR>CommandBars.KeyBindings.Add 0, VK_F1, ID_AJUDA_CONTESTO</P><P>'----------------------------------------------------------- ---------------------------------------- <BR>'Configurações Finais<BR>'----------------------------------------------------------- ---------------------------------------- <BR>CommandBars.EnableCustomization (True)<BR>CommandBars.VisualTheme = xtpThemeOffice2003<BR>End Function</P><P>&nbsp;</P><P>Function fnConfiguraCor()<BR>CommandBars.VisualTheme = xtpThemeOfficeXP</P><P>'Cor de Fundo do menu<BR>CommandBars.GlobalSettings.ColorManager.SetColor STDCOLOR_BTNFACE, RGB(91, 91, 91)</P><P>'Cor do Separador<BR>CommandBars.GlobalSettings.ColorManager.SetColor XPCOLOR_SEPARATOR, RGB(91, 91, 91)</P><P>'Barra Esquerda do Menu ativo<BR>CommandBars.GlobalSettings.ColorManager.SetColor XPCOLOR_TOOLBAR_FACE, RGB(70, 70, 70)</P><P>'Não sei<BR>CommandBars.GlobalSettings.ColorManager.SetColor XPCOLOR_SPLITTER_FACE, RGB(190, 90, 90)</P><P>'Pontos inicial do menu<BR>CommandBars.GlobalSettings.ColorManager.SetColor XPCOLOR_TOOLBAR_GRIPPER, vbWhite</P><P>'Cor das opções do menu quando está selecionada<BR>CommandBars.GlobalSettings.ColorManager.SetColor XPCOLOR_HIGHLIGHT, RGB(70, 70, 70)</P><P>'Cor da borda das opções do menu quando está selecionada<BR>CommandBars.GlobalSettings.ColorManager.SetColor XPCOLOR_HIGHLIGHT_BORDER, RGB(60, 60, 60)</P><P>'não sei<BR>CommandBars.GlobalSettings.ColorManager.SetColor XPCOLOR_HIGHLIGHT_CHECKED, RGB(255, 223, 127)<BR>CommandBars.GlobalSettings.ColorManager.SetColor XPCOLOR_HIGHLIGHT_CHECKED_BORDER, RGB(255, 223, 127)<BR>CommandBars.GlobalSettings.ColorManager.SetColor XPCOLOR_HIGHLIGHT_PUSHED_BORDER, RGB(255, 223, 127)<BR>CommandBars.GlobalSettings.ColorManager.SetColor XPCOLOR_HIGHLIGHT_PUSHED, RGB(255, 223, 127)</P><P>'Cor de fundo do menu quando aberto<BR>CommandBars.GlobalSettings.ColorManager.SetColor XPCOLOR_MENUBAR_FACE, RGB(90, 90, 90)</P><P>'Cor da Borda do Menu<BR>CommandBars.GlobalSettings.ColorManager.SetColor XPCOLOR_MENUBAR_BORDER, RGB(60, 60, 60)</P><P>'Cor da Sombra do menu<BR>CommandBars.GlobalSettings.ColorManager.SetColor XPCOLOR_3DSHADOW, 0<BR>CommandBars.GlobalSettings.ColorManager.SetColor STDCOLOR_BTNSHADOW, 0</P><P>'Modifica Texto<BR>Dim newFont As StdFont<BR>Set newFont = New StdFont<BR>With newFont<BR>&nbsp;&nbsp; .Bold = False<BR>&nbsp;&nbsp; .Italic = False<BR>&nbsp;&nbsp; .Name = "Tahoma"<BR>&nbsp;&nbsp; .Size = 8<BR>&nbsp;&nbsp; .Underline = False<BR>&nbsp;&nbsp; .Strikethrough = False<BR>End With<BR>Set CommandBars.Options.Font = newFont</P><P>'Cor do texto do menu principal<BR>CommandBars.GlobalSettings.ColorManager.SetColor XPCOLOR_TOOLBAR_TEXT, vbWhite<BR>'Cor do texto do menu quando aberto<BR>CommandBars.GlobalSettings.ColorManager.SetColor XPCOLOR_MENUBAR_TEXT, vbWhite<BR>'<BR>CommandBars.GlobalSettings.ColorManager.SetColor STDCOLOR_BTNTEXT, vbWhite</P><P>'RGB(112, 112, 112) =&gt; Cor do texto desabilitado</P><P>CommandBars.GlobalSettings.ColorManager.SetColor XPCOLOR_HIGHLIGHT_TEXT, RGB(255, 223, 127)</P><P>'Outras Configurações<BR>CommandBars.Options.Animation = xtpAnimateWindowsDefault<BR>CommandBars.Options.LunaColors = False<BR>CommandBars.RecalcLayout</P><P>End Function<BR></P><P>Obs: Não está completamente pronto, falta terminar algumas coisas. Mas acho que tem como ficar igual ao o Money</P><span style="font-size:10px"><br /><br />Edited by alfredorcamara</span>]]>
   </description>
   <pubDate>Sat, 02 Apr 2005 20:08:09 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1996&amp;PID=6074&amp;title=custom-theme-support-sample#6074</guid>
  </item> 
  <item>
   <title><![CDATA[Custom Theme Support Sample : Yes... I hope to see more functionality...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1996&amp;PID=5905&amp;title=custom-theme-support-sample#5905</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1005">idolpx</a><br /><strong>Subject:</strong> 1996<br /><strong>Posted:</strong> 23 March 2005 at 8:16am<br /><br />Yes...&nbsp; I hope to see more functionality in the ActiveX controls as well.<br><br>If anyone has any other ideas on how to Custom Theme the commandbar and dockingpanes let us know!&nbsp; :)<br>]]>
   </description>
   <pubDate>Wed, 23 Mar 2005 08:16:28 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1996&amp;PID=5905&amp;title=custom-theme-support-sample#5905</guid>
  </item> 
  <item>
   <title><![CDATA[Custom Theme Support Sample : Those examples are most likely...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1996&amp;PID=5903&amp;title=custom-theme-support-sample#5903</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=780">Devin Dazzle</a><br /><strong>Subject:</strong> 1996<br /><strong>Posted:</strong> 23 March 2005 at 7:50am<br /><br /><P>Those examples are most likely based on the C++ MFC source code.&nbsp; The ActiveX version does not have all the functionality that the MFC code does (yet?). If you take a look at the development history of the Xtreme Suite controls you will se that each new update brings a lot more functionality.</P><P>Hopefully we will se a lot of improvements when version 10 is released (can't wait :)</P>]]>
   </description>
   <pubDate>Wed, 23 Mar 2005 07:50:20 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1996&amp;PID=5903&amp;title=custom-theme-support-sample#5903</guid>
  </item> 
  <item>
   <title><![CDATA[Custom Theme Support Sample : How do they do it in the samples...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1996&amp;PID=5894&amp;title=custom-theme-support-sample#5894</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1005">idolpx</a><br /><strong>Subject:</strong> 1996<br /><strong>Posted:</strong> 22 March 2005 at 4:17pm<br /><br /><P>How do they do it in the samples below?</P><P>http://www.codejock.com/products/commandbars/tour_01.asp<BR>http://www.codejock.com/products/commandbars/tour_02.asp<BR></P>]]>
   </description>
   <pubDate>Tue, 22 Mar 2005 16:17:31 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1996&amp;PID=5894&amp;title=custom-theme-support-sample#5894</guid>
  </item> 
  <item>
   <title><![CDATA[Custom Theme Support Sample : I&amp;#039;m not sure that tiled images...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1996&amp;PID=5891&amp;title=custom-theme-support-sample#5891</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=280">ianp</a><br /><strong>Subject:</strong> 1996<br /><strong>Posted:</strong> 22 March 2005 at 2:17pm<br /><br /><P>I'm not sure that tiled images are possible, which is going to make replicating the toolbar element of the MS Money Theme difficult (or impossible), so I would submit a feature request.</P><P>Also, I had a look in the samples again and there is a good demo of the customization options in the CommandBars MDISample, take a look.</P><span style="font-size:10px"><br /><br />Edited by ianp</span>]]>
   </description>
   <pubDate>Tue, 22 Mar 2005 14:17:54 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1996&amp;PID=5891&amp;title=custom-theme-support-sample#5891</guid>
  </item> 
  <item>
   <title><![CDATA[Custom Theme Support Sample : Yeah... thanks for the sample....]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1996&amp;PID=5889&amp;title=custom-theme-support-sample#5889</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1005">idolpx</a><br /><strong>Subject:</strong> 1996<br /><strong>Posted:</strong> 22 March 2005 at 12:08pm<br /><br /><P>Yeah... thanks for the sample.&nbsp; I'll try it out.</P><P>The goal is to give my users the ability to change the look and feel of the program.&nbsp; It would be nice if they could specify an image for the background of the commandbar.&nbsp; Either a static image or a tiled image.</P><P>&nbsp;</P>]]>
   </description>
   <pubDate>Tue, 22 Mar 2005 12:08:03 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1996&amp;PID=5889&amp;title=custom-theme-support-sample#5889</guid>
  </item> 
  <item>
   <title><![CDATA[Custom Theme Support Sample : thanks for the example mc ]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1996&amp;PID=5848&amp;title=custom-theme-support-sample#5848</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1062">MrCairo</a><br /><strong>Subject:</strong> 1996<br /><strong>Posted:</strong> 21 March 2005 at 4:34pm<br /><br /><P>thanks for the example</P><P>mc</P>]]>
   </description>
   <pubDate>Mon, 21 Mar 2005 16:34:06 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1996&amp;PID=5848&amp;title=custom-theme-support-sample#5848</guid>
  </item> 
  <item>
   <title><![CDATA[Custom Theme Support Sample : Although the MS Money theme is...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1996&amp;PID=5842&amp;title=custom-theme-support-sample#5842</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=280">ianp</a><br /><strong>Subject:</strong> 1996<br /><strong>Posted:</strong> 21 March 2005 at 10:45am<br /><br /><P>Although the MS Money theme is not built into the ActiveX control, you can (or used to be able to) modify the themes using setspecialcolor.</P><P>Using the code in hoanganh's post&nbsp;(<A href="http://forum.codejock.com/forum_posts.asp?TID=403#3522" target="_blank">http://forum.codejock.com/forum_posts.asp?TID=403#3522</A>) I was able to create the office2003 theme on windows 2000 workstations. Since the introduction of the CommandBarsGlobalSettings.ColorManager.SystemTheme methods in 9.6, I have not tried it modifying the themes but I would think it still works.</P><P>I would imagine if you experiment with the colors you could recreate the MS Money look to some degree. Let us know how you get on</P><P><strong>UPDATE: </strong></P><P>Version 9.6 has increased the ability to create custom themed toolbars (or indeed custom themes for just about all CodeJock controls). For more details look up the SetColors method in the Help.</P><P>To begin to illustrate a MS Money implementation, here is some code to get you started. It would be great if you could post your progress...</P><P><table width="99%"><tr><td><pre class="BBcode"><BR>Private Sub Form_Load()<BR>&nbsp;&nbsp;&nbsp; CommandBars.LoadDesignerBars "C:\Program Files\Codejock Software\ActiveX\Xtreme Suite Pro ActiveX v9.60\samples\CommandBars\Customizable\visio.xcb"<BR>&nbsp;&nbsp;&nbsp; Call XCBThemeMSMoney<BR>End Sub<BR>Private Sub XCBThemeMSMoney()<BR>With CommandBars<BR>&nbsp;&nbsp;&nbsp; .VisualTheme = xtpThemeOffice2003<BR>&nbsp;&nbsp;&nbsp; With .GlobalSettings.ColorManager<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .SetColor XPCOLOR_TOOLBAR_TEXT, 16777215<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .SetColor STDCOLOR_BTNFACE, 11567972<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .SetColor STDCOLOR_BTNFACE, 11567972<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .SetColor STDCOLOR_HIGHLIGHTTEXT, 8380415<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .SetColor XPCOLOR_TOOLBAR_FACE, 11567972<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .SetColor XPCOLOR_TOOLBAR_TEXT, 16777215<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .SetColor STDCOLOR_BTNFACE, 5921626<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .SetColor XPCOLOR_HIGHLIGHT, 5263440<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .SetColor XPCOLOR_HIGHLIGHT_BORDER, 5263440<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .SetColor XPCOLOR_HIGHLIGHT_CHECKED, 5263440<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .SetColor XPCOLOR_HIGHLIGHT_CHECKED_BORDER, 5263440<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .SetColor XPCOLOR_HIGHLIGHT_PUSHED, 5263440<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .SetColor XPCOLOR_HIGHLIGHT_PUSHED_BORDER, 5263440<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .SetColor XPCOLOR_HIGHLIGHT_TEXT, 8380415<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .SetColor XPCOLOR_MENUBAR_FACE, 5921626<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .SetColor XPCOLOR_MENUBAR_TEXT, 16777215<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .SetColor XPCOLOR_MENUBAR_BORDER, 4408131<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .SetColor COLOR_BTNSHADOW, RGB(214, 214, 214)<BR>&nbsp;&nbsp;&nbsp; End With<BR>&nbsp;&nbsp;&nbsp; .Options.LunaColors = False<BR>&nbsp;&nbsp;&nbsp; .Options.ShowTextBelowIcons = True<BR>&nbsp;&nbsp;&nbsp; .RecalcLayout<BR>End With</P><P>End Sub<BR></pre></td></tr></table></P><span style="font-size:10px"><br /><br />Edited by ianp</span>]]>
   </description>
   <pubDate>Mon, 21 Mar 2005 10:45:49 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1996&amp;PID=5842&amp;title=custom-theme-support-sample#5842</guid>
  </item> 
  <item>
   <title><![CDATA[Custom Theme Support Sample : The MS Money theme cannot be created...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1996&amp;PID=5840&amp;title=custom-theme-support-sample#5840</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=260">Boyd</a><br /><strong>Subject:</strong> 1996<br /><strong>Posted:</strong> 21 March 2005 at 7:18am<br /><br /><P>The MS Money theme cannot be created using the ActiveX version of the controls.&nbsp; You can switch between the various built-in themes and change the color scheme, but you cannot create a new theme that isn't based on one of the original, built-in themes.</P>]]>
   </description>
   <pubDate>Mon, 21 Mar 2005 07:18:10 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1996&amp;PID=5840&amp;title=custom-theme-support-sample#5840</guid>
  </item> 
  <item>
   <title><![CDATA[Custom Theme Support Sample :  Is there a sample that explains...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1996&amp;PID=5829&amp;title=custom-theme-support-sample#5829</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1005">idolpx</a><br /><strong>Subject:</strong> 1996<br /><strong>Posted:</strong> 20 March 2005 at 11:01pm<br /><br />Is there a sample that explains how to create custom themes like the MS Money theme shown at the following links in VB6?<br><br>http://www.codejock.com/products/commandbars/tour_01.asp<br>http://www.codejock.com/products/commandbars/tour_02.asp<br><span style="font-size:10px"><br /><br />Edited by idolpx</span>]]>
   </description>
   <pubDate>Sun, 20 Mar 2005 23:01:26 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1996&amp;PID=5829&amp;title=custom-theme-support-sample#5829</guid>
  </item> 
 </channel>
</rss>