Hello, I have been using in some projects a xml library for my settings saving, how it worked was like this :
saveSettings(Control control, XmlConfig config, string controlName)
It would then search all the controls inside that one (recursively), calling itself each time it found a new control, etc, and saving all their info to a xml file like :
And then load them back.
Last time I used it was in Framework 2, recently I needed it again, and re-used it, it saves the XML file like normal, but doesnt seem to update the forms after loading xml file, and I cant seem to find why, all code seems correct.
Anyone know a nice replacement? (the default one, application settings, uses an approach that plainly sucks, does approach of specifying a control to save is much more simple and works everywhere)
Thanks in advance =)