Hi all,

I need some advice/info on how to tackle this problem.

Currently I have a config file which contains info needed for my program. When the program first runs it reads this info and puts it into variables. So far no problem.

As the program has grown, there is more and more info in this file and I have decided to add a tab to my program so that the user can change he info here rather than having to alter a config file in notepad, whcih some users may not really know how to do, OR run the risk of making a small mistake which would cause the program not to run.

So, the question is, should I (which is my only idea so far) continue to load the settings from this config file but instead load them into textboxes on the new config tab and write back to the file on program exit (should they have been modified)?

OR, is there and easer way to tackle this?

Thanks for your input and advice.