The stock anwer is "It depends" on what your requirements are. If the
clients of your application don't always work on the same computer a
database is a good choice. When they always work on the same machine you can
use the app.config file.
i use the Isolated Storage Settings Helper found here:
http://idesign.net/idesign/DesktopDefault.aspx?tabindex=5&tabid=11
Smart client applications often need to store application settings in a
partial trust environment. For strongly typed settings building
applications with Visual Studio 2005, user settings can be written in
partial trust once .NET 2.0 releases. In addition, sometimes you may
need to store ad-hoc settings in separate files and you may not want to
use user settings for those settings. Isolated storage provides a good
place to put custom settings that can be written to in partial trust.
This helper class allows you to read and write custom settings
simple to use
> The stock anwer is "It depends" on what your requirements are. If the
> clients of your application don't always work on the same computer a
> database is a good choice. When they always work on the same machine you can
> use the app.config file.
Earl - 22 Nov 2007 14:57 GMT
Thanks to both for the ideas.
>i use the Isolated Storage Settings Helper found here:
>
[quoted text clipped - 16 lines]
>> can
>> use the app.config file.