I\'m trying to save a string variable from my FolderBrowserDialog.SelectedPath().
Using a breakpoint I can see that the string is correctly loaded onto SelectedPath(),
You need to call Properties.Settings.Default.Save().
Properties.Settings.Default.Save()
:)
You must call ...
Properties.Settings.Default.Save();
Check out Using Settings in C#.