<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>CodeItBetter Programming &#187; Registry</title>
	<atom:link href="http://www.codeitbetter.com/category/registry-manipulation-vb6-code/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.codeitbetter.com</link>
	<description>Another VB Programming Blog</description>
	<lastBuildDate>Wed, 08 Feb 2012 23:50:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>How to Delete an Entire Key or Key Structure from Registry</title>
		<link>http://www.codeitbetter.com/how-to-delete-an-entire-key-or-key-structure-from-registry/</link>
		<comments>http://www.codeitbetter.com/how-to-delete-an-entire-key-or-key-structure-from-registry/#comments</comments>
		<pubDate>Sat, 28 Jan 2012 11:45:49 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Registry]]></category>
		<category><![CDATA[delete]]></category>
		<category><![CDATA[entire]]></category>
		<category><![CDATA[key]]></category>
		<category><![CDATA[resource]]></category>
		<category><![CDATA[structure]]></category>
		<category><![CDATA[subroutine]]></category>
		<category><![CDATA[vb activex controls]]></category>
		<category><![CDATA[vb net source]]></category>
		<category><![CDATA[visual basic 6.0]]></category>
		<category><![CDATA[visual basic class]]></category>
		<category><![CDATA[visual basic codes]]></category>
		<category><![CDATA[visual basic database code]]></category>
		<category><![CDATA[visual basic net database programming]]></category>
		<category><![CDATA[visual basic tools]]></category>

		<guid isPermaLink="false">http://www.codeitbetter.com/how-to-delete-an-entire-key-or-key-structure-from-registry/</guid>
		<description><![CDATA[1 2 3 4 5 6 7 8 'Registry - How to Delete an Entire Key or Key Structure from Registry Private Declare Function RegDeleteKey Lib &#34;advapi32.dll&#34; Alias &#34;RegDeleteKeyA&#34; _ (ByVal hKey As Long, ByVal lpSubKey As String) As Long Private Const HKEY_LOCAL_MACHINE = &#38;H80000002 &#160; Private Sub Command1_Click() Call RegDeleteKey(HKEY_LOCAL_MACHINE, &#34;Software\TestKey\&#34;) End Sub How [...]<p><a href="http://www.codeitbetter.com/how-to-delete-an-entire-key-or-key-structure-from-registry/">How to Delete an Entire Key or Key Structure from Registry</a> is a post from: <a href="http://www.codeitbetter.com">CodeItBetter Programming</a></p>
]]></description>
		<wfw:commentRss>http://www.codeitbetter.com/how-to-delete-an-entire-key-or-key-structure-from-registry/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to remove a value from a Registry Key</title>
		<link>http://www.codeitbetter.com/how-to-remove-a-value-from-a-registry-key/</link>
		<comments>http://www.codeitbetter.com/how-to-remove-a-value-from-a-registry-key/#comments</comments>
		<pubDate>Sat, 28 Jan 2012 11:43:22 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Registry]]></category>
		<category><![CDATA[active x vb]]></category>
		<category><![CDATA[activex vb6]]></category>
		<category><![CDATA[form]]></category>
		<category><![CDATA[how to database]]></category>
		<category><![CDATA[key]]></category>
		<category><![CDATA[learn visual basic]]></category>
		<category><![CDATA[remove]]></category>
		<category><![CDATA[source code]]></category>
		<category><![CDATA[value]]></category>
		<category><![CDATA[vb]]></category>
		<category><![CDATA[vb tutorials]]></category>
		<category><![CDATA[visual basic help]]></category>
		<category><![CDATA[visual c++ source code]]></category>

		<guid isPermaLink="false">http://www.codeitbetter.com/how-to-remove-a-value-from-a-registry-key/</guid>
		<description><![CDATA[1 2 3 4 5 6 7 8 9 10 11 12 'Registry - How to remove a value from a Registry Key Private Declare Function RegOpenKey Lib &#34;advapi32.dll&#34; Alias &#34;RegOpenKeyA&#34; (ByVal hKey As Long, _ ByVal lpSubKey As String, phkResult As Long) As Long Private Declare Function RegDeleteValue Lib &#34;advapi32.dll&#34; Alias &#34;RegDeleteValueA&#34; _ (ByVal [...]<p><a href="http://www.codeitbetter.com/how-to-remove-a-value-from-a-registry-key/">How to remove a value from a Registry Key</a> is a post from: <a href="http://www.codeitbetter.com">CodeItBetter Programming</a></p>
]]></description>
		<wfw:commentRss>http://www.codeitbetter.com/how-to-remove-a-value-from-a-registry-key/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to export part of the registry to a .reg file</title>
		<link>http://www.codeitbetter.com/how-to-export-part-of-the-registry-to-a-reg-file/</link>
		<comments>http://www.codeitbetter.com/how-to-export-part-of-the-registry-to-a-reg-file/#comments</comments>
		<pubDate>Thu, 12 Jan 2012 11:39:10 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Registry]]></category>
		<category><![CDATA[active x code]]></category>
		<category><![CDATA[asp net code]]></category>
		<category><![CDATA[export]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[how to visual basic]]></category>
		<category><![CDATA[ocx programming]]></category>
		<category><![CDATA[part]]></category>
		<category><![CDATA[programming source code]]></category>
		<category><![CDATA[reg]]></category>
		<category><![CDATA[source code library]]></category>
		<category><![CDATA[vb6 active x]]></category>
		<category><![CDATA[visual basic 6.0 code]]></category>
		<category><![CDATA[visual basic net help]]></category>

		<guid isPermaLink="false">http://www.codeitbetter.com/how-to-export-part-of-the-registry-to-a-reg-file/</guid>
		<description><![CDATA[1 2 3 4 5 'Registry - How to export part of the registry to a .reg file 'ust Shell Regedit with the /e switch and pass the hive that you want to export and subkeys. Shell &#34;C:\Windows\regedit.exe /e C:\Data.reg HKEY_LOCAL_MACHINE\SOFTWARE\microsoft\Windows&#34;, _ vbNormal How to export part of the registry to a .reg file is [...]<p><a href="http://www.codeitbetter.com/how-to-export-part-of-the-registry-to-a-reg-file/">How to export part of the registry to a .reg file</a> is a post from: <a href="http://www.codeitbetter.com">CodeItBetter Programming</a></p>
]]></description>
		<wfw:commentRss>http://www.codeitbetter.com/how-to-export-part-of-the-registry-to-a-reg-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Save and retrieve registry settings.</title>
		<link>http://www.codeitbetter.com/save-and-retrieve-registry-settings/</link>
		<comments>http://www.codeitbetter.com/save-and-retrieve-registry-settings/#comments</comments>
		<pubDate>Sat, 16 Jul 2011 11:30:10 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Registry]]></category>
		<category><![CDATA[code bank]]></category>
		<category><![CDATA[program]]></category>
		<category><![CDATA[registry settings]]></category>
		<category><![CDATA[retrieve]]></category>
		<category><![CDATA[save]]></category>
		<category><![CDATA[source code program]]></category>
		<category><![CDATA[vb]]></category>
		<category><![CDATA[visual basic source code]]></category>

		<guid isPermaLink="false">http://www.codeitbetter.com/?p=67</guid>
		<description><![CDATA[1 2 3 4 5 6 7 8 9 10 11 12 13 'Registry - Save and retrieve registry settings. 'Variant to hold 2-dimensional array returned by GetSetting. Dim MySettings As Variant ' Unused in the example. Not sure why it's there. ' Place some settings in the registry. ' Saves the Top and Left [...]<p><a href="http://www.codeitbetter.com/save-and-retrieve-registry-settings/">Save and retrieve registry settings.</a> is a post from: <a href="http://www.codeitbetter.com">CodeItBetter Programming</a></p>
]]></description>
		<wfw:commentRss>http://www.codeitbetter.com/save-and-retrieve-registry-settings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to retrieve the size of a form from the registry so that the form size persists each time the application is loaded Uses GetSetting registry function.</title>
		<link>http://www.codeitbetter.com/how-to-retrieve-the-size-of-a-form-from-the-registry-so-that-the-form-size-persists-each-time-the-application-is-loaded-uses-getsetting-registry-function/</link>
		<comments>http://www.codeitbetter.com/how-to-retrieve-the-size-of-a-form-from-the-registry-so-that-the-form-size-persists-each-time-the-application-is-loaded-uses-getsetting-registry-function/#comments</comments>
		<pubDate>Sat, 02 Jul 2011 23:32:16 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Registry]]></category>
		<category><![CDATA[api routines]]></category>
		<category><![CDATA[form]]></category>
		<category><![CDATA[form size]]></category>
		<category><![CDATA[getsetting registry function]]></category>
		<category><![CDATA[loaded]]></category>
		<category><![CDATA[microsoft visual basic application]]></category>
		<category><![CDATA[persists]]></category>
		<category><![CDATA[retrieve size]]></category>
		<category><![CDATA[source code]]></category>
		<category><![CDATA[time application]]></category>
		<category><![CDATA[uses]]></category>
		<category><![CDATA[visual basic 6 code]]></category>
		<category><![CDATA[visual basic codes]]></category>

		<guid isPermaLink="false">http://www.codeitbetter.com/?p=32</guid>
		<description><![CDATA[1 2 3 4 5 6 7 8 9 10 11 12 13 'Registry - How to retrieve the size of a form from the registry so that the form size persists each time the application is loaded Uses GetSetting registry function. Private Sub Form_Load() Dim MyHeight As Integer, MyWidth As Integer MyHeight = GetSetting(&#34;TestRegistrySettings&#34;, [...]<p><a href="http://www.codeitbetter.com/how-to-retrieve-the-size-of-a-form-from-the-registry-so-that-the-form-size-persists-each-time-the-application-is-loaded-uses-getsetting-registry-function/">How to retrieve the size of a form from the registry so that the form size persists each time the application is loaded Uses GetSetting registry function.</a> is a post from: <a href="http://www.codeitbetter.com">CodeItBetter Programming</a></p>
]]></description>
		<wfw:commentRss>http://www.codeitbetter.com/how-to-retrieve-the-size-of-a-form-from-the-registry-so-that-the-form-size-persists-each-time-the-application-is-loaded-uses-getsetting-registry-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 1/35 queries in 0.301 seconds using disk: basic
Object Caching 1027/1140 objects using disk: basic

Served from: www.codeitbetter.com @ 2012-02-09 06:13:02 -->
