I have an Access application (frontend and backend) that I'm developing for a target user group of approx. 130 people. I know, I know, access can't handle that kind of load. The compromise that I'm using is limiting the number of people who are logged into the application at any given time. I'm tentatively setting this number to 25 people, which could change pending a test period.
Upon opening the app, it would count the number of current users, and if that number is 25 display an appropriate message and disable the fields on the log in screen. The reason I'm allowing the users to get to the log in screen at all (vs. shutting down the app right away) if there are 25 people using the app is because I want to include a list box of all the currently logged in users on the login screen so they can see who is using it. So potentially 25 users could be adding, updating, and deleting data, while the other 105 could see the list on the login screen, but not progress to the data entry part.
My question: Would it be better to simply shut down the app if the max user count has been reached, or is it okay to have 105 users accessing a read only log in screen that will tell them who is logged in, but not let them log in. OR, should I do something like a .txt log file to list all current users?
Sorry for the verbose explanation...
Thanks,
jender624
Upon opening the app, it would count the number of current users, and if that number is 25 display an appropriate message and disable the fields on the log in screen. The reason I'm allowing the users to get to the log in screen at all (vs. shutting down the app right away) if there are 25 people using the app is because I want to include a list box of all the currently logged in users on the login screen so they can see who is using it. So potentially 25 users could be adding, updating, and deleting data, while the other 105 could see the list on the login screen, but not progress to the data entry part.
My question: Would it be better to simply shut down the app if the max user count has been reached, or is it okay to have 105 users accessing a read only log in screen that will tell them who is logged in, but not let them log in. OR, should I do something like a .txt log file to list all current users?
Sorry for the verbose explanation...
Thanks,
jender624