Click here to Skip to main content
15,884,388 members
Articles / Programming Languages / Visual Basic
Article

Application settings in VB.NET 2.0 and Visual Studio 2005

Rate me:
Please Sign up or sign in to vote.
4.62/5 (28 votes)
11 Jan 20062 min read 375.6K   3.3K   97   42
An article on using application settings in VB.NET 2.0 and Visual Studio 2005 to save the size and location of a form.

Introduction

A new feature of .NET 2.0 and Visual Studio 2005 is the ability to save a user's application settings in a user.config file that is saved in the user's desktop profile.

Background

Until .NET 2.0, it was difficult to save a user's settings for an application. User settings had to be saved in the registry, in an .ini file, or in a custom text file. Now, it is possible to save settings for a user's application that will even move with them in a roaming desktop profile.

To view the non-roaming settings, open the user.config file located at %USERPROFILE%\Local Settings\Application Data\<Company Name>\<appdomainname>_<eid>_<hash>\<verison>\user.config.

To view the roaming user settings, open the user.config file located at %USERPROFILE%\Application Data\<Company Name>\<appdomainname>_<eid>_<hash>\<verison>\user.config.

Using the code

To add application or user settings to a project, right-click on the project name in the Solution Explorer window, and click Properties. Then, click on Settings in the left tab list.

Sample Image - AppSettings2005.jpg

When a setting is added to the Visual Studio designer, a public property is created in the My.Settings namespace. Depending on the scope of the setting, the property will be ReadOnly or writable. This allows you to programmatically change the user setting values and save them with the My.Settings.Save() method.

A second way to save settings is to enable the 'Save My.Settings on Shutdown' setting in the application. To do this, right-click on the project name in the Solution Explorer window, and click Properties. Then, click on Application in the left tab list.

Sample Image - AppSettings2005_save.jpg

To restore the last saved dimensions of a form, we set the size and location of the form from the user settings in the form's Load event.

VB
Private Sub Form1_Load _
    (ByVal sender As Object, ByVal e As System.EventArgs) _
    Handles Me.Load
        'Set textboxes and form name from application and user settings

        'Notice how the application setting property is ReadOnly
        Me.Text = My.Settings.MainFormText

        'Notice how the user settings are writable
        Me.Size = My.Settings.MainFormSize
        Me.Location = My.Settings.MainFormLocation

        Me.txtFormText.Text = My.Settings.MainFormText

        'Show the form now
        Me.Visible = True
    End Sub

In the form's FormClosing event, we save the form's size and location values to the current values.

Main form closing

VB
Private Sub Form1_FormClosing _
    (ByVal sender As Object, _
    ByVal e As System.Windows.Forms.FormClosingEventArgs) _
    Handles Me.FormClosing
        Try
            'Set my user settings MainFormSize to the
            'current(Form) 's size
            My.Settings.MainFormSize = Me.Size

            'Set my user setting MainFormLocation to
            'the current form's location
            My.Settings.MainFormLocation = Me.Location

            'Save the user settings so next time the
            'window will be the same size and location
            My.Settings.Save()

            MsgBox("Your settings were saved successfully.", _
            MsgBoxStyle.OkOnly, "Save...")
        Catch ex As Exception
            MsgBox("There was a problem saving your settings.", _
            MsgBoxStyle.Critical, "Save Error...")
        End Try
    End Sub

Conclusion

You can use application and user settings for many things in .NET 2.0. Just remember that if you want to change the settings then the scope has to be set as User.

History

  • Second revision - Moved around text and image to make the article more readable. Added a Conclusion section.
  • Third revision - Updated user.config file paths, and added profile and auto save on exit explanation.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Help desk / Support www.swarmsoft.net
United States United States
Chad Schultz
13 years of Computer Information Systems experience
MCSE, MCAD, MCTS SharePoint

Blog: ChadSchultz.com

Comments and Discussions

 
QuestionProblem with the Me.FormClosing Pin
tomk650528-Jun-12 15:38
tomk650528-Jun-12 15:38 
QuestionHello how to make my.settings portable? Pin
leesong28-Feb-11 22:31
leesong28-Feb-11 22:31 
GeneralTweaking the code to handle window sizing better Pin
Martin Omander30-Sep-08 9:03
Martin Omander30-Sep-08 9:03 
QuestionHow do I change ConnectionString in app.config Pin
Leif Thomsen23-Aug-08 1:57
Leif Thomsen23-Aug-08 1:57 
QuestionIs it safe? Pin
Dan Suthar26-Oct-07 23:32
professionalDan Suthar26-Oct-07 23:32 
Good article. I want to ask you that is it safe to save passwords like informations using this way ?

Thanks,
Dan
AnswerRe: Is it safe? Pin
depmoddima2-Nov-07 0:00
depmoddima2-Nov-07 0:00 
QuestionExpress Edition Pin
FREEYO17-Jul-07 15:19
FREEYO17-Jul-07 15:19 
Generalapplication settings in ToolStripMenuItem Pin
jhon edison20-Apr-07 18:25
jhon edison20-Apr-07 18:25 
GeneralRe: application settings in ToolStripMenuItem Pin
ctwalker16-Aug-07 4:30
ctwalker16-Aug-07 4:30 
QuestionMy.Settings.Save for complex types? Pin
jerome51369-Apr-07 17:23
jerome51369-Apr-07 17:23 
GeneralRe: My.Settings.Save for complex types? Pin
Eric Moreau18-May-07 7:30
Eric Moreau18-May-07 7:30 
AnswerRe: My.Settings.Save for complex types? Pin
jerome513618-May-07 7:36
jerome513618-May-07 7:36 
AnswerRe: My.Settings.Save for complex types? Pin
jerome513618-May-07 7:37
jerome513618-May-07 7:37 
GeneralRe: My.Settings.Save for complex types? Pin
Eric Moreau18-May-07 7:41
Eric Moreau18-May-07 7:41 
QuestionIt's possible to have my.Setting from different classes? [modified] Pin
papervegetal29-Mar-07 22:29
papervegetal29-Mar-07 22:29 
Questionpersist settings between versions Pin
Thomas Fang18-Dec-06 9:19
Thomas Fang18-Dec-06 9:19 
AnswerRe: persist settings between versions PinPopular
ctwalker16-Aug-07 4:36
ctwalker16-Aug-07 4:36 
QuestionWindows service is not reading the settings [modified] Pin
SvenCPA11-Jul-06 0:35
SvenCPA11-Jul-06 0:35 
QuestionRe: Windows service is not reading the settings Pin
UfiPhil20-Aug-06 17:20
UfiPhil20-Aug-06 17:20 
AnswerRe: Windows service is not reading the settings Pin
itoleck14-Sep-06 3:13
itoleck14-Sep-06 3:13 
GeneralRe: Windows service is not reading the settings Pin
DaveBlack25-Jan-11 2:32
DaveBlack25-Jan-11 2:32 
GeneralApplication Bindings Pin
dotslashmartyn9-May-06 13:42
dotslashmartyn9-May-06 13:42 
QuestionHow to handle application version change Pin
dscemama1-May-06 3:36
dscemama1-May-06 3:36 
AnswerRe: How to handle application version change Pin
majze15-Sep-06 20:11
majze15-Sep-06 20:11 
Questionwhat about C#? Pin
Paul Horstink29-Apr-06 1:29
Paul Horstink29-Apr-06 1:29 

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.