<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DZone Snippets: registry code</title>
    <link>http://snippets.dzone.com/posts</link>
    <pubDate>Mon, 06 Oct 2008 06:05:50 GMT</pubDate>
    <description>DZone Snippets: registry code</description>
    <item>
      <title>Solution for a common problem: "Cannot write to the registry"</title>
      <link>http://snippets.dzone.com/posts/show/4055</link>
      <description>Original (not working):&lt;br /&gt;&lt;code&gt;&lt;br /&gt; RegistryKey reg = Registry.CurrentUser.OpenSubKey("Control Panel\\Desktop");&lt;br /&gt; reg.SetValue("WallpaperStyle", "1");    //2 for stretch&lt;br /&gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;Modified (working):&lt;br /&gt;&lt;code&gt;&lt;br /&gt; RegistryKey reg = Registry.CurrentUser.OpenSubKey("Control Panel\\Desktop", true);&lt;br /&gt; reg.SetValue("WallpaperStyle", "1");    //2 for stretch&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;/code&gt;</description>
      <pubDate>Wed, 23 May 2007 12:20:00 GMT</pubDate>
      <guid>http://snippets.dzone.com/posts/show/4055</guid>
      <author>mstampar (Miroslav Stampar)</author>
    </item>
  </channel>
</rss>
