<?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 : Themes &#111;n W2K...</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Toolkit Pro : Themes &#111;n W2K...]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Thu, 09 Apr 2026 19:36:10 +0000</pubDate>
  <lastBuildDate>Fri, 30 Apr 2004 19:23:48 +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=677</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[Themes &#111;n W2K... :  Well the best fix I could come...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=677&amp;PID=1784&amp;title=themes-on-w2k#1784</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=203">Ark42</a><br /><strong>Subject:</strong> 677<br /><strong>Posted:</strong> 30 April 2004 at 7:23pm<br /><br /><br>Well the best fix I could come up with without ripping apart all the codejock source is to just set <br>m_arrColor&#091;15&#093; = btn; instead of m_arrColor&#091;15&#093; = RGB(236, 233, 216);<br><br>This will make the theme not look exactly the same as it would underXP, but you still get all the cool blue gradiants and yellow/orangehighlights, without the dual-tone disabled combo box and stuff. It willjust use the normal button face color 212,208,200 or 192,192,192.<br><br>]]>
   </description>
   <pubDate>Fri, 30 Apr 2004 19:23:48 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=677&amp;PID=1784&amp;title=themes-on-w2k#1784</guid>
  </item> 
  <item>
   <title><![CDATA[Themes &#111;n W2K... :   Ok, well I hadn&amp;#039;t used...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=677&amp;PID=1781&amp;title=themes-on-w2k#1781</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=203">Ark42</a><br /><strong>Subject:</strong> 677<br /><strong>Posted:</strong> 30 April 2004 at 4:06pm<br /><br /><br>Ok, well I hadn't used the docking pain until now, but I think it needsits own theme, because its derived from some other class:<br><br>class CXTPDockingPaneOffice2003ThemeEx : public CXTPDockingPaneOffice2003Theme<br>{<br>public:<br>&nbsp;&nbsp;&nbsp; CXTPDockingPaneOffice2003ThemeEx(BOOL bGreyToBlue = TRUE, BOOL bYellowHighlight = FALSE);<br>&nbsp;&nbsp;&nbsp; BOOL m_bGreyToBlue, m_bYellowHighlight;<br>protected:<br>&nbsp;&nbsp;&nbsp; virtual void RefreshMetrics();<br>};<br><br> CXTPDockingPaneOffice2003ThemeEx::CXTPDockingPaneOffice2 003ThemeEx(BOOL bGreyToBlue, BOOL bYellowHighlight)<br>{<br>&nbsp;&nbsp;&nbsp; m_bGreyToBlue = bGreyToBlue;<br>&nbsp;&nbsp;&nbsp; m_bYellowHighlight = bYellowHighlight;<br>&nbsp;&nbsp;&nbsp; RefreshMetrics();<br>}<br><br>void CXTPDockingPaneOffice2003ThemeEx::RefreshMetrics()<br>{<br>&nbsp;&nbsp;&nbsp; CXTPDockingPaneOffice2003Theme::RefreshMetrics();<br>&nbsp;&nbsp;&nbsp; if( !m_bLunaTheme ) {<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; CXTPColorManager *pClrMgr = XTPColorManager();<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; COLORREF btn = pClrMgr-&gt;GetColor(COLOR_BTNFACE);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; if( m_bGreyToBlue &amp;&amp; (btn == RGB(192, 192, 192) || btn == RGB(212, 208, 200)) ) {<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_clrCommandBarDark = RGB(129, 169, 226);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_clrCommandBarLight = RGB(221, 236, 254);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_bLunaTheme = TRUE;<br><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;0&#093; = RGB(0, 0, 0);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;1&#093; = RGB(0, 78, 152);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;2&#093; = RGB(0, 84, 227);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;3&#093; = RGB(122, 150, 223);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;4&#093; = RGB(255, 255, 255);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;5&#093; = RGB(255, 255, 255);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;6&#093; = RGB(0, 0, 0);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;7&#093; = RGB(0, 0, 0);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;8&#093; = RGB(0, 0, 0);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;9&#093; = RGB(255, 255, 255);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;10&#093; = RGB(212, 208, 200);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;11&#093; = RGB(212, 208, 200);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;12&#093; = RGB(128, 128, 128);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;13&#093; = RGB(49, 106, 197);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;14&#093; = RGB(255, 255, 255);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;15&#093; = RGB(236, 233, 216);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;16&#093; = RGB(172, 168, 153);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;17&#093; = RGB(172, 168, 153);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;18&#093; = RGB(0, 0, 0);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;19&#093; = RGB(216, 228, 248);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;20&#093; = RGB(255, 255, 255);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;21&#093; = RGB(113, 111, 100);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;22&#093; = RGB(251, 248, 231);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;23&#093; = RGB(0, 0, 0);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;24&#093; = RGB(255, 255, 225);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;25&#093; = RGB(181, 181, 181);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;26&#093; = RGB(0, 0, 128);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;27&#093; = RGB(61, 149, 255);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;28&#093; = RGB(0, 0, 0);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;29&#093; = RGB(0, 0, 0);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;30&#093; = RGB(158, 190, 245);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;31&#093; = RGB(255, 238, 194);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;32&#093; = RGB(0, 0, 128);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;33&#093; = RGB(254, 128, 62);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;34&#093; = RGB(144, 157, 178);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;35&#093; = RGB(197, 194, 184);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;36&#093; = RGB(255, 192, 111);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;37&#093; = RGB(0, 0, 128);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;38&#093; = RGB(39, 65, 118);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;39&#093; = RGB(106, 140, 203);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;40&#093; = RGB(109, 150, 208);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;41&#093; = RGB(246, 246, 246);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;42&#093; = RGB(230, 227, 210);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;43&#093; = RGB(0, 45, 150);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;44&#093; = RGB(0, 0, 0);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;45&#093; = RGB(0, 0, 0);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;46&#093; = RGB(0, 0, 0);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;47&#093; = RGB(0, 0, 0);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;48&#093; = RGB(218, 233, 255);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;49&#093; = RGB(129, 126, 114);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;50&#093; = RGB(0, 0, 128);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;51&#093; = RGB(216, 231, 252);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;52&#093; = RGB(158, 190, 245);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;53&#093; = RGB(203, 225, 252);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;54&#093; = RGB(0, 45, 150);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;55&#093; = RGB(196, 218, 250);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; } else if(m_bYellowHighlight) {<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;31&#093; = RGB(255, 238, 194);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;33&#093; = RGB(254, 128, 62);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_arrColor&#091;36&#093; = RGB(255, 192, 111);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; m_bLunaTheme = TRUE;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }<br>&nbsp;&nbsp;&nbsp; }<br>}<br><br><br>&nbsp;&nbsp;&nbsp; m_paneManager.SetCustomTheme(new CXTPDockingPaneOffice2003ThemeEx());<br><br><br>Its almost the same class, but it works like that.<br><br>What I havn't figured out yet is how to getthe status bar color the proper shade of grey (by this I mean it isdrawing as RGB(212, 208, 200) despite me wanting it RGB(236, 233, 216)):<br><img src="uploads/Ark42/2004-04-30_160411_statusbar.png" border="0"><br><br>..and how to get the editbox portion of a combo box on my toolbars to also use the proper shadeof grey when disabled, and also its rightclick menu it not themed...<br><img src="uploads/Ark42/2004-04-30_160440_combobox-disabled.png" border="0"><img src="uploads/Ark42/2004-04-30_160449_combobox-c&#111;ntextmenu.png" border="0">]]>
   </description>
   <pubDate>Fri, 30 Apr 2004 16:06:12 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=677&amp;PID=1781&amp;title=themes-on-w2k#1781</guid>
  </item> 
  <item>
   <title><![CDATA[Themes &#111;n W2K... : Yeah, you aren&amp;#039;t using the...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=677&amp;PID=1775&amp;title=themes-on-w2k#1775</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=203">Ark42</a><br /><strong>Subject:</strong> 677<br /><strong>Posted:</strong> 29 April 2004 at 7:08pm<br /><br />Yeah, you aren't using the custom theme then. Anyplace you use SetThemeyou need to use SetCustomTheme or some other equivalent.&nbsp; You needto have a "new CXTPOffice2003ThemeEx()" for each place, I think.<br><br>I have to use the custom thing twice, and each one needs its own new'dcopy or it blows up later on when they try to self-delete or something:<br><br>CXTPPaintManager::SetCustomTheme(new CXTPOffice2003ThemeEx());<br>GetCommandBars()-&gt;SetPaintManager(new CXTPOffice2003ThemeEx());<br><br>]]>
   </description>
   <pubDate>Thu, 29 Apr 2004 19:08:01 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=677&amp;PID=1775&amp;title=themes-on-w2k#1775</guid>
  </item> 
  <item>
   <title><![CDATA[Themes &#111;n W2K... : For my docking panes, I have this: ...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=677&amp;PID=1774&amp;title=themes-on-w2k#1774</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=374">ddlittle</a><br /><strong>Subject:</strong> 677<br /><strong>Posted:</strong> 29 April 2004 at 7:03pm<br /><br /><P>For my docking panes, I have this:</P><P> &nbsp;GetDockingPaneManager()-&gt;SetTheme(xtpPaneThemeOffic e2003);<BR></P><P>which is a different method than the overridden theme.&nbsp; The color arrays and theme members are the same.&nbsp; Am I using this wrong?</P><P>- David</P>]]>
   </description>
   <pubDate>Thu, 29 Apr 2004 19:03:11 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=677&amp;PID=1774&amp;title=themes-on-w2k#1774</guid>
  </item> 
  <item>
   <title><![CDATA[Themes &#111;n W2K... :  Not sure what you mean by pane...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=677&amp;PID=1773&amp;title=themes-on-w2k#1773</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=203">Ark42</a><br /><strong>Subject:</strong> 677<br /><strong>Posted:</strong> 29 April 2004 at 5:57pm<br /><br /><br>Not sure what you mean by pane colors? The colors are all the exactsame as they would look with the normal Office2003 theme under XP.<br>Got a screenshot?<br><br>]]>
   </description>
   <pubDate>Thu, 29 Apr 2004 17:57:15 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=677&amp;PID=1773&amp;title=themes-on-w2k#1773</guid>
  </item> 
  <item>
   <title><![CDATA[Themes &#111;n W2K... : That looks pretty good,except...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=677&amp;PID=1772&amp;title=themes-on-w2k#1772</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=374">ddlittle</a><br /><strong>Subject:</strong> 677<br /><strong>Posted:</strong> 29 April 2004 at 5:54pm<br /><br /><P>That looks pretty good,except for the pane colors.&nbsp; I guess I need to do something similar for those colors.&nbsp; I'll try it tomorrow...</P><P>- David Little</P>]]>
   </description>
   <pubDate>Thu, 29 Apr 2004 17:54:59 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=677&amp;PID=1772&amp;title=themes-on-w2k#1772</guid>
  </item> 
  <item>
   <title><![CDATA[Themes &#111;n W2K... :   See   https://forum.codejo...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=677&amp;PID=1771&amp;title=themes-on-w2k#1771</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=203">Ark42</a><br /><strong>Subject:</strong> 677<br /><strong>Posted:</strong> 29 April 2004 at 5:05pm<br /><br /><br>See  <a href="https://forum.codejock.com/forum_posts.asp?TID=626&amp;PN=2" target="_blank"> https://forum.codejock.com/forum_posts.asp?TID=626&amp;P N=2</a> --I use hard coded colors to simulate the blue theme that it would looklike under XP for anything less then XP, but only if the user has thedefault grey settings for their OS.<br><br><span style="font-size:10px"><br /><br />Edited by Ark42</span>]]>
   </description>
   <pubDate>Thu, 29 Apr 2004 17:05:53 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=677&amp;PID=1771&amp;title=themes-on-w2k#1771</guid>
  </item> 
  <item>
   <title><![CDATA[Themes &#111;n W2K... : I was testing an app on a W2K...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=677&amp;PID=1769&amp;title=themes-on-w2k#1769</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=374">ddlittle</a><br /><strong>Subject:</strong> 677<br /><strong>Posted:</strong> 29 April 2004 at 3:49pm<br /><br /><P>I was testing an app on a W2K box that uses the Office/2003 theme, and the colors are all dull.&nbsp; </P><P>What do most of you do in this situation?&nbsp; Do you switch to a Office/2000 theme on W2K?&nbsp; Do you try to emulate themes by hardcoding the colors in the paint manager?&nbsp; I really don't want to ship something that is that dull...</P><P>Thanks!</P><P>- David Little</P>]]>
   </description>
   <pubDate>Thu, 29 Apr 2004 15:49:06 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=677&amp;PID=1769&amp;title=themes-on-w2k#1769</guid>
  </item> 
 </channel>
</rss>