Are My.Settings values saved in the program itself or do they get stored in the registry? So, for example, if I set a My.Settings value with a program, then I copy the program itself to another PC - is the My.Settings value still set?
| ||||
feedback
|
|
It depends upon the scope you have selected. There are two scope settings - Application and User scope. From MSDN article:
| ||||
|
feedback
|
|
They're definitely not stored within the program if they're User settings - that's not very easy to implement, and rather pointless. Rather, they're stored in a configuration file in the %AppData% folder. So no, if you copied the program, the User settings wouldn't come with it, just the Application settings. | |||
|
feedback
|
|
If you have installed your application using clickonce then your MySettings will be stored in a config file which is stored at `C:\Users\\AppData\Local\Apps\2.0\Data........ search in these path with a file named as yourapp.exe.config The thing is MySettings will be stored in app.config file of that application and after publishing the app.config file is saved as applicationname.exe.config file | ||||
|
feedback
|