Well there's several ways you could do this.
The easiest:
If you have C# Express 2005, you can use the built it settings designer to create application settings. From there, you can bind the values of specific settings to the various fields in the forms and vice versa.
The not easiest:
Use your own file i/o and hook the form's load and close events. When these events are invoked, you can read/write the file as necessary.
|