SBendBuckeye
Programmer
Hello all,
I have several custom settings such as LastFormLocation and LastInputFolder which I maintain at the user level for my application. Every time I send out a new Installer these settings are re-initialized.
Custom user settings are saved in a path like the following:
where 1.) Valmont is the CompanyName, 2.) MarisaInterface.vshost.ex_Url..etc is the assembly name cobbled together with a unique name assigned by Microsoft somewhere and 3.) 1.3.0.0 is the current build version.
I need to retain the custom settings across versions. How do I do that? Surely I don't have to attempt to navigate the path above do I? Thanks in advance for any ideas and/or suggestions!
I have several custom settings such as LastFormLocation and LastInputFolder which I maintain at the user level for my application. Every time I send out a new Installer these settings are re-initialized.
Custom user settings are saved in a path like the following:
Code:
C:\Documents and Settings\glw2\Local Settings\Application Data\Valmont\MarisaInterface.vshost.ex_Url_h224bxompltlxk4ezksikdmyen1xtnej\1.3.0.0
I need to retain the custom settings across versions. How do I do that? Surely I don't have to attempt to navigate the path above do I? Thanks in advance for any ideas and/or suggestions!