i have a form with some checkboxes on it i want to save those settings.
how can i save the settings
i have a form with some checkboxes on it i want to save those settings.
how can i save the settings
You can use the SaveSetting
function for that, to retrieve you can use GetSetting
function. See this fore more info.
Put all of your settings into a class, then serialize the class to an xml file using the XmlSerializer.
And if you loathe the REGISTRY, you can have a CONFIG file (essentially XML) with KEY / VALUE pairs.
The REGISTRY can be cumbersome on so many levels including remembering to REMOVE any settings you may have saved when you UNINSTALL.