Click here to Skip to main content
Click here to Skip to main content

Saving Registry Settings

By , 7 Nov 2006
 

Application Settings

Summary

How to persist application settings in C# by saving them to the registry.

Overview

We can make several real world applications with Microsoft Visual C Sharp. An application can hold many settings. Application settings is a common description of an program. But there are no alternative methods in C# to handle application settings.

The System.Configuration.AppSettingsReader class allows to read its properties but it is read only in run time. In Visual Basic, there are two methods GetSetting and SaveSetting which can be used to save settings in registry. But it is not available in C#. This article can be useful for beginners to save application settings.

The Class

The code is very easy. There is only one class for handling settings. You can copy the code, add the code to your project and use it. The name of the class is RegistryHelper.

public class RegistryHelper
{

}

The Code

using System;
using Microsoft.Win32;
using System.Windows.Forms;
namespace BDNotePad.Modules
{
public class RegistryHelper
{
private static string FormRegKey(string sSect)
{
return sSect;
}
public static void SaveSetting(string Section, string Key,string Setting)
{
        
string text1 = FormRegKey(Section);
RegistryKey key1 =
    
Application.UserAppDataRegistry.CreateSubKey(text1);
if (key1 == null)
{
return;
}
try
{
key1.SetValue(Key, Setting);
}
catch (Exception exception1)
{
return;
}
finally
{
key1.Close();
}

}
public static string GetSetting(string Section, string Key, string Default )
{
if (Default == null)
{
Default = "";
}
string text2 = FormRegKey(Section);
RegistryKey key1 = Application.UserAppDataRegistry.OpenSubKey(text2);
if (key1 != null)
{
object obj1 = key1.GetValue(Key, Default);
key1.Close();
if (obj1 != null)
{
if (!(obj1 is string))
{
return null;
}
return (string) obj1;
}
return null;
}
return Default;
}
}
}

Using the Code

The code is very simple and easy to use. In the Load and Closed event of a form, you can use the code.

For example:

protected override void OnLoad(EventArgs e)
{
    base.OnLoad (e);

    this.Width = Convert.ToInt32(RegistryHelper.GetSetting("Layout","Width",400));
}

protected override void OnClosed(EventArgs e)
{
    base.OnClosed (e);

    RegistryHelper.SaveSetting("Layout","Width",this.Width.ToString());
}

Conclusion

If you find this article useful or if you find any bugs, please let me know. Please send comments to mksamsks@yahoo.com.

May God keep you well.

History

  • 7th November, 2006: Initial post

About the Author

My name is Muhammed Kawser Ahmed. I am from Bangladesh. I am 15 years old and am learning C#. I study in grade 8. I like to share as much knowledge as possible with other people.

License

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

About the Author

Mohammed Kawser
Bangladesh Bangladesh
Member
I am a student of class 8. My country is in Bangladesh. A interest boy in programming. Age - 15 years old. Email - mksams@hotmail.com

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralOnClosed and OnCloseing events don't get called.memberjamesdk827 Dec '10 - 5:34 
QuestionCompare to VB6' GetSetting, SaveSettingmemberSandhya Yamarthi4 Sep '09 - 9:49 
GeneralThank you!membermycheck17 May '09 - 23:11 
GeneralGreat code. Thank you !member-=777=-11 Oct '07 - 8:04 
Generalhimemberbatlai28 Aug '07 - 23:22 
GeneralGreat CodememberFakher Halim24 Apr '07 - 7:16 
GeneralThanks for the codememberberickson18 Nov '06 - 11:46 
GeneralRe: Thanks for the codememberMohammed Kawser12 Dec '06 - 4:55 
QuestionWhy not use a xml-filememberAndré Ziegler7 Nov '06 - 11:18 
AnswerRe: Why not use a xml-filememberMohammed Kawser12 Dec '06 - 4:58 

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 7 Nov 2006
Article Copyright 2006 by Mohammed Kawser
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid