application settings
is there in .NET some classes easy to use to retrieve and store user data to XML?
thank you
If you don't want to go that route, you can always use XmlReader and XmlWriter to write your own config files. Or you can use the XmlSerializer to serialize/deserialize a configuration settings object that you create.
Take a look at http://www.visualbasicforum.com/t131671.html .
This article should give you an idea on how you could create your own class to handle this. It is written in VB.NET though, but works the same.