M
MrXs
i have a setting form for my program and wish to allow the setting to
be saved and reopened to the last set setting on program startup..
lets say i have a xml file like this :
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="test" value="My Test String"
/>
</appSettings>
</configuration>
[code:1:9a6bbbbeac]
private void button1_Click(object sender, System.EventArgs e)
{
//here i put what code ??
}
[/code:1:9a6bbbbeac]
how do a get the app to save any new settings to this xml file and
also how do i load the setting on program startup ?
Thanks
MrXs
be saved and reopened to the last set setting on program startup..
lets say i have a xml file like this :
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="test" value="My Test String"
/>
</appSettings>
</configuration>
[code:1:9a6bbbbeac]
private void button1_Click(object sender, System.EventArgs e)
{
//here i put what code ??
}
[/code:1:9a6bbbbeac]
how do a get the app to save any new settings to this xml file and
also how do i load the setting on program startup ?
Thanks
MrXs