Why does my C# Config file not load the settings after saving them?
Advertisements I’m trying to write my Textbox Text into a config file in C# Winfroms to save the text. This is what I have done so far: The settings: The code to save the settings: Properties.Settings.Default.saveToTextBox = saveToTextBox.Text; The code to load the settings: saveToTextBox.Text = Properties.Settings.Default.saveToTextBox; ` And the Events FormClosed and Load to… Read More Why does my C# Config file not load the settings after saving them?