.net - Settings for multiple instances in VB -



.net - Settings for multiple instances in VB -

which best way store application , user settings of application running multiple instances?

my problem using vb's "application settings" 1 instance overwrite other one.

i want identify each instance number passed via command line argument. utilize number identify appropriate settings of running instance, see in local ini o xml file improve way handle that.

is there alternative, maybe native in .net?

thank you.

the best thought scenario utilize database. concurrent access databases designed for. simpler develop , maintain custom cross-process info storage solutions.

maybe sql server (since well-integrated vs), or sql server express.

you seek db bit more embedded, , simpler install/distribute, sqlite. here couple quick tutorials on how started sqlite:

http://web.archive.org/web/20100208133236/http://www.mikeduncan.com/sqlite-on-dotnet-in-3-mins/ (mostly goes on installation, , classes you'll use) http://www.codeproject.com/kb/cs/sqlitecsharp.aspx (starts mention query syntax)

.net vb.net visual-studio-2010

Comments

Popular posts from this blog

java - How to pass parameters between Request-Scoped Controllers? -

string - what is the difference between "some" == "some\0" and strcmp("some","some\0") in c++? -

actionscript 3 - Flex: moving a point with rotation doesnt change the point XY? -