Hi,
I have two windows application. eg ., FormA and FormB
The app.config of FormA is as below
Now I have another application named as Form B.
I want to retrieve both appsettings and connectionstrin gs of Form A into Form B.
Further I should be able to modify both of these appsettings and connection strings and save it into the Form A.
I know how to retrieve the appsettings , and connection strings of the same application and modify.
But how do I obtain of some other application and modify the same.
Kindly do let me know.
Regards
cmrhema
I have two windows application. eg ., FormA and FormB
The app.config of FormA is as below
Code:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="company" value="DSRC"/>
</appSettings>
<connectionStrings>
<add name="test" connectionString="Testing Connection String"/>
</connectionStrings>
</configuration>
I want to retrieve both appsettings and connectionstrin gs of Form A into Form B.
Further I should be able to modify both of these appsettings and connection strings and save it into the Form A.
I know how to retrieve the appsettings , and connection strings of the same application and modify.
But how do I obtain of some other application and modify the same.
Kindly do let me know.
Regards
cmrhema
Comment