How do I get my program to remember the users settings?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

You can either:

  • write the settings to a file
  • Create setting in VS with Project->Properties->Settings... then by using

    Properties.Settings.Default.SettingName = "something"; // Set setting

    this.Text = Properties.Settings.Default.SettingName; // Use setting

link|improve this answer
If you want the settings to persist between application sessions then you will also need to save them: Properties.Settings.Default.Save(); – Kildareflare Feb 4 '10 at 17:01
feedback

Looks like you are looking for UserScopedSettingAttribute

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.