Click here to Skip to main content
15,881,092 members
Articles / Programming Languages / Visual Basic

How to Program for Windows Registry

Rate me:
Please Sign up or sign in to vote.
3.31/5 (57 votes)
16 Mar 2010CPOL1 min read 52K   995   45   8
This article will guide you how to create/retrieve/delete key entries in Windows Registry.

Introduction

This article will guide you how to use Windows Registry to store user specific non critical data which can be retrieved across applications.

Background

The Registry is split into a number of logical sections better known as hives. A registry hive is a group of keys, subkeys, and values. While programming for our applications, we need to store application specific data. That usually goes in ‘software’ subtree of HKEY_CURRENT_USER hive or HKEY_CURRENT_USER\Software. The supporting files for this hive goes in %SystemRoot%\Profiles\Username folder. While the supporting files for all other hives go in %SystemRoot%\System32\Config folder.

Using the Code

To use Registry in VB.NET, you first have to imports Microsoft.Win32 namespace. This will provide an access to RegistryKey class.

Create Registry Key

VB.NET
'Create a SubKey under Software subtree of HKEY_CURRENT_USER hive.	
Dim vRegistryKey As RegistryKey
vRegistryKey = Registry.LocalMachine.OpenSubKey("Software", True)
vRegistryKey.CreateSubKey("NewKey")
vRegistryKey.Close()

'Open Newly created SubKey and insert values using SetValue() method.	
Dim vRegistryKey1 As RegistryKey
vRegistryKey1 = Registry.LocalMachine.OpenSubKey("Software\NewKey", True)
vRegistryKey1.SetValue("Key Name", txtKeyName.Text)
vRegistryKey1.SetValue("Key Description", txtKeyDescription.Text)
vRegistryKey1.Close()

Retrieve Existing Registry Key

VB.NET
'Open required SubKey and use GetValue() method to fetch key values.	
Dim vRegistryKey As RegistryKey
vRegistryKey = Registry.LocalMachine.OpenSubKey("Software\NewKey", True)
txtKeyName.Text = vRegistryKey.GetValue("Key Name").ToString
txtKeyDescription.Text = vRegistryKey.GetValue("Key Description").ToString
vRegistryKey.Close()

Delete Existing Registry Key

VB.NET
'Open required SubKey and use DeleteSubKey() method to delete subkey.	
Dim vRegistryKey As RegistryKey
vRegistryKey = Registry.LocalMachine.OpenSubKey("Software", True)
vRegistryKey.DeleteSubKey("NewKey")
vRegistryKey.Close()

Points to Note

In the provided download sample, when you'll create an Item, please enter a valid Server/IP Address (you can enter 'localhost'), otherwise an error will be shown.

Final Words

I hope you will find this article helpful in programming for Registry Keys. For more information, you can check out the demo program available in the downloads section or you can contact me on arshad@cherisys.com.

Good luck!

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead Cherisys Technologies
India India
Senior Software Professional with 13+ years of experience in web/desktop applications development.

Comments and Discussions

 
GeneralReally a great work Pin
pamperghost3-Apr-10 1:55
pamperghost3-Apr-10 1:55 
Hi Sam
Its really a great work. I have learned something new from your article. thanks for posting.

regards
pampers
GeneralRe: Really a great work Pin
Mohd Arshad Malik3-Apr-10 4:28
Mohd Arshad Malik3-Apr-10 4:28 
QuestionHow to Insert Binary and DWORD data Pin
Anubhava Dimri27-Mar-10 2:23
Anubhava Dimri27-Mar-10 2:23 
GeneralMy vote of 1 Pin
SalarSoft16-Mar-10 19:10
SalarSoft16-Mar-10 19:10 
GeneralGood article. Pin
Rajib Ahmed9-Jul-08 19:47
Rajib Ahmed9-Jul-08 19:47 
General[Message Removed] Pin
Mojtaba Vali25-May-08 0:49
Mojtaba Vali25-May-08 0:49 
QuestionAre you trying to rewrite the MSDN? Pin
Emil - Gabriel22-May-08 1:45
Emil - Gabriel22-May-08 1:45 
GeneralNice Pin
James Garner (jadaradix)6-May-08 10:01
James Garner (jadaradix)6-May-08 10:01 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.