Windows Multiple User Application Best Practices

Posted by Burt on Stack Overflow See other posts from Stack Overflow or by Burt
Published on 2010-06-05T23:06:12Z Indexed on 2010/06/05 23:12 UTC
Read the original article Hit count: 150

Filed under:
|
|
|

I am developing a WPF application that will hook into a SQLLite database and I have a number of reservations around multiple users:

  1. When I install my application should I assume that each windows user account will mean only one user of my application or should I include a login for my app (drawback is that the user will have to log in all the time)
  2. If I am supporting multiple users how do I handle a new user account i.e. on application start of the new account should I set up a new user in the DB
  3. Are there any other gotchas around this area, it isn't something I have really had to worry about before.

Thanks in advance,

B

© Stack Overflow or respective owner

Related posts about c#

Related posts about wpf