<?xml version="1.0" encoding="UTF-8"?><rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
> <channel><title>Comments on: MS Access: Changing the Color Scheme programmatically</title> <atom:link href="http://blog.nkadesign.com/2008/ms-access-changing-the-color-scheme-programmatically/feed/" rel="self" type="application/rss+xml" /><link>http://blog.nkadesign.com/2008/ms-access-changing-the-color-scheme-programmatically/</link> <description>Renaud Bompuis on the interwebs!</description> <lastBuildDate>Thu, 09 May 2013 14:27:45 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=384</generator> <item><title>By: JC</title><link>http://blog.nkadesign.com/2008/ms-access-changing-the-color-scheme-programmatically/comment-page-1/#comment-16178</link> <dc:creator>JC</dc:creator> <pubDate>Tue, 16 Apr 2013 14:23:42 +0000</pubDate> <guid
isPermaLink="false">http://blog.nkadesign.com/?p=72#comment-16178</guid> <description><![CDATA[&lt;p&gt;Is there a way to control the color palette for MS Chart in Access?  I can set any color I want in VBA but it always returns the closest match from a preset color palette.  I there a way to control the colors in the preset color palette programmatically?&lt;/p&gt;
]]></description> <content:encoded><![CDATA[<p>Is there a way to control the color palette for MS Chart in Access?  I can set any color I want in VBA but it always returns the closest match from a preset color palette.  I there a way to control the colors in the preset color palette programmatically?</p> ]]></content:encoded> </item> <item><title>By: Simeon Bartley</title><link>http://blog.nkadesign.com/2008/ms-access-changing-the-color-scheme-programmatically/comment-page-1/#comment-14081</link> <dc:creator>Simeon Bartley</dc:creator> <pubDate>Fri, 31 Aug 2012 04:19:15 +0000</pubDate> <guid
isPermaLink="false">http://blog.nkadesign.com/?p=72#comment-14081</guid> <description><![CDATA[&lt;p&gt;This code is great - but had a problem reading the current scheme on form load under windows 7 x64. The fix is the addition of a single &#039;ByVal&#039; to the RegOpenKeyExA declaration as follows:
ByVal dwOptions As Long. Credit is to the answer by DonBr at http://social.msdn.microsoft.com/Forums/en-US/windowscompatibility/thread/073349b1-0f29-41ef-aaab-dbb262d52457/&lt;/p&gt;
]]></description> <content:encoded><![CDATA[<p>This code is great -- but had a problem reading the current scheme on form load under windows 7 x64. The fix is the addition of a single &#8216;ByVal&#8217; to the RegOpenKeyExA declaration as follows:
ByVal dwOptions As Long. Credit is to the answer by DonBr at <a
href="http://social.msdn.microsoft.com/Forums/en-US/windowscompatibility/thread/073349b1-0f29-41ef-aaab-dbb262d52457/" rel="nofollow">http://social.msdn.microsoft.com/Forums/en-US/windowscompatibility/thread/073349b1-0f29-41ef-aaab-dbb262d52457/</a></p> ]]></content:encoded> </item> <item><title>By: Klaus</title><link>http://blog.nkadesign.com/2008/ms-access-changing-the-color-scheme-programmatically/comment-page-1/#comment-13816</link> <dc:creator>Klaus</dc:creator> <pubDate>Fri, 25 Nov 2011 10:11:38 +0000</pubDate> <guid
isPermaLink="false">http://blog.nkadesign.com/?p=72#comment-13816</guid> <description><![CDATA[&lt;p&gt;Thank you!&lt;/p&gt;
&lt;p&gt;It works on a Win XP SP3 system with runtime 2007...&lt;/p&gt;
]]></description> <content:encoded><![CDATA[<p>Thank you!</p><p>It works on a Win XP SP3 system with runtime 2007&#8230;</p> ]]></content:encoded> </item> <item><title>By: Stephen Poynter</title><link>http://blog.nkadesign.com/2008/ms-access-changing-the-color-scheme-programmatically/comment-page-1/#comment-13735</link> <dc:creator>Stephen Poynter</dc:creator> <pubDate>Thu, 25 Aug 2011 08:56:39 +0000</pubDate> <guid
isPermaLink="false">http://blog.nkadesign.com/?p=72#comment-13735</guid> <description><![CDATA[&lt;p&gt;DUDE that is awesome. Something so small yet so awesome thanks&lt;/p&gt;
]]></description> <content:encoded><![CDATA[<p>DUDE that is awesome. Something so small yet so awesome thanks</p> ]]></content:encoded> </item> <item><title>By: Renaud</title><link>http://blog.nkadesign.com/2008/ms-access-changing-the-color-scheme-programmatically/comment-page-1/#comment-13583</link> <dc:creator>Renaud</dc:creator> <pubDate>Tue, 31 May 2011 01:57:35 +0000</pubDate> <guid
isPermaLink="false">http://blog.nkadesign.com/?p=72#comment-13583</guid> <description><![CDATA[&lt;p&gt;@Edwin: I updated the code and sample database to automatically detect the correct registry key for changing the theme.&lt;br /&gt;
There is no simple way (AFAIK) to make this work for a single Office application as the Theme registry key is used by all of them.&lt;br /&gt;
The only way I can think of would be to either use a Runtime version separate from the normal Office version the user has installed, or to contain the whole of the runtime installation in a &lt;a href=&quot;http://en.wikipedia.org/wiki/Application_Virtualization&quot; rel=&quot;nofollow&quot;&gt;virtualised application environment&lt;/a&gt; like &lt;a href=&quot;http://www.vmware.com/products/thinapp/overview.html&quot; rel=&quot;nofollow&quot;&gt;ThinApp&lt;/a&gt; for instance.&lt;/p&gt;
]]></description> <content:encoded><![CDATA[<p>@Edwin: I updated the code and sample database to automatically detect the correct registry key for changing the theme.<br
/> There is no simple way (AFAIK) to make this work for a single Office application as the Theme registry key is used by all of them.<br
/> The only way I can think of would be to either use a Runtime version separate from the normal Office version the user has installed, or to contain the whole of the runtime installation in a <a
href="http://en.wikipedia.org/wiki/Application_Virtualization" rel="nofollow">virtualised application environment</a> like <a
href="http://www.vmware.com/products/thinapp/overview.html" rel="nofollow">ThinApp</a> for instance.</p> ]]></content:encoded> </item> <item><title>By: Edwin Blancovitch</title><link>http://blog.nkadesign.com/2008/ms-access-changing-the-color-scheme-programmatically/comment-page-1/#comment-13581</link> <dc:creator>Edwin Blancovitch</dc:creator> <pubDate>Mon, 30 May 2011 20:31:46 +0000</pubDate> <guid
isPermaLink="false">http://blog.nkadesign.com/?p=72#comment-13581</guid> <description><![CDATA[&lt;p&gt;My friend..&lt;/p&gt;
&lt;p&gt;Can you provide us with the code to change the color code for office 2010...&lt;/p&gt;
&lt;p&gt;PD: Is there anyway to make this work for access only?&lt;/p&gt;
&lt;p&gt;Edwin&lt;/p&gt;
]]></description> <content:encoded><![CDATA[<p>My friend..</p><p>Can you provide us with the code to change the color code for office 2010&#8230;</p><p>PD: Is there anyway to make this work for access only?</p><p>Edwin</p> ]]></content:encoded> </item> <item><title>By: Windows Themes and Access Form</title><link>http://blog.nkadesign.com/2008/ms-access-changing-the-color-scheme-programmatically/comment-page-1/#comment-11959</link> <dc:creator>Windows Themes and Access Form</dc:creator> <pubDate>Fri, 16 Apr 2010 11:32:48 +0000</pubDate> <guid
isPermaLink="false">http://blog.nkadesign.com/?p=72#comment-11959</guid> <description><![CDATA[&lt;p&gt;[...] this link http://blog.nkadesign.com/2008/ms-ac...grammatically/  Should help get you started.  Dan Access Development   [...]&lt;/p&gt;
]]></description> <content:encoded><![CDATA[<p>[...] this link <a
href="http://blog.nkadesign.com/2008/ms-ac" rel="nofollow">http://blog.nkadesign.com/2008/ms-ac</a>&#8230;grammatically/  Should help get you started.  Dan Access Development   [...]</p> ]]></content:encoded> </item> <item><title>By: Access Team Blog</title><link>http://blog.nkadesign.com/2008/ms-access-changing-the-color-scheme-programmatically/comment-page-1/#comment-8359</link> <dc:creator>Access Team Blog</dc:creator> <pubDate>Tue, 06 May 2008 00:47:24 +0000</pubDate> <guid
isPermaLink="false">http://blog.nkadesign.com/?p=72#comment-8359</guid> <description><![CDATA[&lt;p&gt;&lt;strong&gt;Follow up to Transparency Forms...&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Renaud posted some comments to the previous post about transparency forms and made some really cool enhancements...&lt;/p&gt;
]]></description> <content:encoded><![CDATA[<p><strong>Follow up to Transparency Forms&#8230;</strong></p><p>Renaud posted some comments to the previous post about transparency forms and made some really cool enhancements&#8230;</p> ]]></content:encoded> </item> </channel> </rss>