<?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 : Manifiest &amp; office2003 theme</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Toolkit Pro : Manifiest &amp; office2003 theme]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 20 Apr 2026 14:36:56 +0000</pubDate>
  <lastBuildDate>Mon, 06 Dec 2004 10:40:15 +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=1480</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[Manifiest &amp; office2003 theme :  Is there a way to reflect the...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1480&amp;PID=4284&amp;title=manifiest-office2003-theme#4284</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=203">Ark42</a><br /><strong>Subject:</strong> 1480<br /><strong>Posted:</strong> 06 December 2004 at 10:40am<br /><br /><br>Is there a way to reflect the null brush / set transparent to true likeyou can with a Dialog to have a bitmap or gradient background showthrough? I thought there was a thread here not that long ago where thatwas shown to be possible, but with the Command bars this will not work?<br>For some reason, I use a lot of CSliderCtrl's on my toolbars and they have to have grey boxes around them for now.<br><br>]]>
   </description>
   <pubDate>Mon, 06 Dec 2004 10:40:15 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1480&amp;PID=4284&amp;title=manifiest-office2003-theme#4284</guid>
  </item> 
  <item>
   <title><![CDATA[Manifiest &amp; office2003 theme : Just solid :(   ]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1480&amp;PID=4265&amp;title=manifiest-office2003-theme#4265</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 1480<br /><strong>Posted:</strong> 06 December 2004 at 7:18am<br /><br /><P>Just solid :( </P><P>&nbsp;</P>]]>
   </description>
   <pubDate>Mon, 06 Dec 2004 07:18:07 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1480&amp;PID=4265&amp;title=manifiest-office2003-theme#4265</guid>
  </item> 
  <item>
   <title><![CDATA[Manifiest &amp; office2003 theme :  Can you get the gradient to...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1480&amp;PID=4242&amp;title=manifiest-office2003-theme#4242</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=203">Ark42</a><br /><strong>Subject:</strong> 1480<br /><strong>Posted:</strong> 02 December 2004 at 4:48pm<br /><br /><br>Can you get the gradient to show through for the Office 2003 theme or just a solid color?<br><br>]]>
   </description>
   <pubDate>Thu, 02 Dec 2004 16:48:34 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1480&amp;PID=4242&amp;title=manifiest-office2003-theme#4242</guid>
  </item> 
  <item>
   <title><![CDATA[Manifiest &amp; office2003 theme : You must reflect WM_CTLCOLOR message...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1480&amp;PID=4237&amp;title=manifiest-office2003-theme#4237</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 1480<br /><strong>Posted:</strong> 02 December 2004 at 4:03am<br /><br /><P>You must reflect WM_CTLCOLOR message and returns brush:</P><P><BR>BEGIN_MESSAGE_MAP(CButtonOptions, CButton)<BR>&nbsp;//{{AFX_MSG_MAP(CButtonOptions)<BR>&nbsp;ON_CONTROL_REFLECT(BN_CLICKED, OnOptionShow)<BR>&nbsp;ON_WM_CTLCOLOR_REFLECT()<BR>&nbsp;//}}AFX_MSG_MAP<BR>END_MESSAGE_MAP()</P><P>afx_msg HBRUSH CButtonOptions::CtlColor ( CDC* pDC, UINT nCtlColor )<BR>{<BR>&nbsp;static CBrush brush;<BR>&nbsp;static COLORREF clr = 0;<BR>&nbsp;<BR>&nbsp;if (clr != XTPPaintManager()-&gt;GetXtremeColor(XPCOLOR_3DFACE))<BR>&nbsp;{<BR>&nbsp;&nbsp;clr = XTPPaintManager()-&gt;GetXtremeColor(XPCOLOR_3DFACE);<BR>&nbsp;&nbsp;brush.DeleteObject();<BR>&nbsp;&nbsp;brush.CreateSolidBrush(clr);&nbsp;<BR>&nbsp;}<BR>&nbsp;pDC-&gt;SetBkColor(clr);</P><P>&nbsp;return brush;<BR>}</P><P>&nbsp;</P><P>same for CSliderCtrl:</P><P><BR>class CSliderCtrlEx : public CSliderCtrl<BR>{<BR>protected:<BR>&nbsp;HBRUSH CtlColor ( CDC* pDC, UINT nCtlColor );<BR>&nbsp;&nbsp;<BR>protected:<BR>&nbsp;DECLARE_MESSAGE_MAP()<BR>};</P><P>&nbsp;</P><P>BEGIN_MESSAGE_MAP(CSliderCtrlEx, CSliderCtrl)<BR>&nbsp;//{{AFX_MSG_MAP(CButtonOptions)<BR>&nbsp;ON_WM_CTLCOLOR_REFLECT()<BR>&nbsp;//}}AFX_MSG_MAP<BR>END_MESSAGE_MAP()</P><P><BR>afx_msg HBRUSH CSliderCtrlEx::CtlColor ( CDC* pDC, UINT nCtlColor )<BR>{<BR>&nbsp;static CBrush brush;<BR>&nbsp;static COLORREF clr = 0;<BR>&nbsp;<BR>&nbsp;if (clr != XTPPaintManager()-&gt;GetXtremeColor(XPCOLOR_3DFACE))<BR>&nbsp;{<BR>&nbsp;&nbsp;clr = XTPPaintManager()-&gt;GetXtremeColor(XPCOLOR_3DFACE);<BR>&nbsp;&nbsp;brush.DeleteObject();<BR>&nbsp;&nbsp;brush.CreateSolidBrush(clr);&nbsp;<BR>&nbsp;}<BR>&nbsp;pDC-&gt;SetBkColor(clr);</P><P>&nbsp;return brush;<BR>}</P><P>&nbsp;</P>]]>
   </description>
   <pubDate>Thu, 02 Dec 2004 04:03:41 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1480&amp;PID=4237&amp;title=manifiest-office2003-theme#4237</guid>
  </item> 
  <item>
   <title><![CDATA[Manifiest &amp; office2003 theme : its mean i wanna set backcolor...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1480&amp;PID=4236&amp;title=manifiest-office2003-theme#4236</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=606">Cusco</a><br /><strong>Subject:</strong> 1480<br /><strong>Posted:</strong> 02 December 2004 at 3:22am<br /><br /><P>its mean i wanna set backcolor to office2003 theme style...</P>]]>
   </description>
   <pubDate>Thu, 02 Dec 2004 03:22:02 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1480&amp;PID=4236&amp;title=manifiest-office2003-theme#4236</guid>
  </item> 
  <item>
   <title><![CDATA[Manifiest &amp; office2003 theme : What does it mean &amp;#034;are didn&amp;#039;t...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1480&amp;PID=4233&amp;title=manifiest-office2003-theme#4233</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 1480<br /><strong>Posted:</strong> 02 December 2004 at 3:02am<br /><br /><P>What does it mean "are didn't work"? You can't click them? </P><P>Or its mean you want to set backcolor? Or what?</P>]]>
   </description>
   <pubDate>Thu, 02 Dec 2004 03:02:31 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1480&amp;PID=4233&amp;title=manifiest-office2003-theme#4233</guid>
  </item> 
  <item>
   <title><![CDATA[Manifiest &amp; office2003 theme : I tested the CommonControls sample...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1480&amp;PID=4230&amp;title=manifiest-office2003-theme#4230</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=606">Cusco</a><br /><strong>Subject:</strong> 1480<br /><strong>Posted:</strong> 01 December 2004 at 6:35pm<br /><br /><P>I tested the CommonControls sample program, after remove the manifest...</P><P>SliderCtrl, CheckBox are didn't work..in office2003 theme..</P><P>I wanna set the program to office2003 theme (sliderCtrl, CheckBox)...Help me..</P><P>Please....reply ...</P>]]>
   </description>
   <pubDate>Wed, 01 Dec 2004 18:35:04 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1480&amp;PID=4230&amp;title=manifiest-office2003-theme#4230</guid>
  </item> 
  <item>
   <title><![CDATA[Manifiest &amp; office2003 theme : In the CommonControls sample program,...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1480&amp;PID=4214&amp;title=manifiest-office2003-theme#4214</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=606">Cusco</a><br /><strong>Subject:</strong> 1480<br /><strong>Posted:</strong> 01 December 2004 at 2:34am<br /><br /><P>In the CommonControls sample program, I modified the thema into office2003 theme..</P><P>but Windows common controls didn't work..</P><P>I think because using manifest....But I wanna set the office2003 theme including the windows common controls...in the toolbar...( in anything else, wanna use manifest)</P><P>How can i do?...Please, reply my question...</P><P>&nbsp;</P>]]>
   </description>
   <pubDate>Wed, 01 Dec 2004 02:34:48 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1480&amp;PID=4214&amp;title=manifiest-office2003-theme#4214</guid>
  </item> 
 </channel>
</rss>