Sorry but your link gave me an internal blackout...:~ I just started programming in Visual C# using the Visual Studio manual. Sofar everything was clear, but I got stucked in how to handle my application settings. In the manual I found in the ApplicationSettingsBase this example for saving settings:
private void Form1_FormClosing(object sender, FormClosingEventArgs e) { //Synchronize manual associations first. frmSettings1.FormText = this.Text + '.'; frmSettings1.Save(); so my questions are: 1. Are the ApplicationSettingsBase commands the way to store and reload application settings? 2. If yes: is this applicable to the problem/question in my first message? 3. where should i put this code?