Where are use scoped settings stored?

  • Thread starter Thread starter Scott M.
  • Start date Start date
S

Scott M.

If I add a setting to my project in the settings designer and mark it as a
user setting, and then access and modify the setting via code, where is the
updated setting stored so that it won't be used for other users? Is this a
feature only for Windows apps?
 
user's application settings in a user.config file are saved in the user's
desktop profile

non-roaming settings, user.config file is located at %USERPROFILE%\Local
Settings\Application Data\<Company
Name>\<appdomainname>_<eid>_<hash>\<verison>\user.config.

roaming user settings, user.config file is located at
%USERPROFILE%\Application Data\<Company
Name>\<appdomainname>_<eid>_<hash>\<verison>\user.config.



values are stored to the file after calling My.Settings.Save or on shutdown
of the app if save my settings on exit box is checked in the properties
window of the application


HTH

Michel
 
Back
Top