Allow user to Save Settings

TimmyLee

New member
Joined
Feb 13, 2004
Messages
2
I am working on a little VB.NET program, and I have alot of entry fields for whoever is using the program. How can I have it so they can save their settings so next time they open the program It uses the settings they gave it? And then in turn how could I have it so they could after doing that, return it to the original default settings? Any help on this would be greatly appreciated. By the way I would prefer the settings not be saved to something like a .log or .txt file.
 
To save data to the regestry use:
SaveSetting("Name of app", "Folder", "keyname", "value")
to retreve it:
GetSetting("Name of app", "Folder", "keyname", "default value if key doesnt exist")
 
Back
Top