multiuser environment
how to make windows application multiuser
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Altaf AnsariPosted Jan 23, 2018, 12:45 AM
Win apps are already multi user as each user gets their own instance with its own data. In fact a single Win app can be opened by the same user multiple times and each instance is independent. The only time data would be shared is if you are storing the data in a shared location like a file or database. Since you don't have that then there shouldn't be any problems.
Start up several different instances of your app at the same time to replicate a multi-user scenario and verify it is behaving the way you expect. If it isn't then clarify what it is doing and what you were expecting.