Create my app.exe.config file
e.g
<?xml version="1.0" encoding="utf-8" ?>
<configuratio n>
<appSettings>
<add key="MobileDBPa th" value="\Program Files\database. sdf"/>
<add key="WebService " value="http://localhost/SyncService.asm x"/>
<add key="CSVPaths" value="\Program Files\Folder"/>
</appSettings>
</configuration>
This is what i need to do
i need info from 3 text boxes to be either added (if empty) or update (if there is already info in it). when the info is inserted to the text boxes they should press 1 update button that will update/add info to the 3 different keys. How would i go about doing that?
e.g
<?xml version="1.0" encoding="utf-8" ?>
<configuratio n>
<appSettings>
<add key="MobileDBPa th" value="\Program Files\database. sdf"/>
<add key="WebService " value="http://localhost/SyncService.asm x"/>
<add key="CSVPaths" value="\Program Files\Folder"/>
</appSettings>
</configuration>
This is what i need to do
i need info from 3 text boxes to be either added (if empty) or update (if there is already info in it). when the info is inserted to the text boxes they should press 1 update button that will update/add info to the 3 different keys. How would i go about doing that?
Comment