Hey mikewf,
That really depends on your front end usage method. Do you have the front-end on the server or did you provide copies for the people using it?
If there is just one front-end and located on the server then yes this will effect you. The page lock will make it so others can open the database but NOT the same form.
If you send the copies of the front-end out to the users then this will not effect them entering at the same time.
Making the copies of the front end and sending them out is very easy. The problem is in this case you might be able to lose control of the data. At that point two people edit the same record at the same time which course will not be a good thing. Also, if
you make updates you will have to send it out to everyone! I do not recommend this method unless you code some things to make it safer and easier to deploy.
I have two suggestions for you I guess.
1 - First, i don't know if it is an option but you could use sql server for the backend database. The express version is free and holds 3 to 4 times the amount of data access could alone.
2 - If you do not like the idea of SQL Server (Far more secure by the way) then you can lower the encryption. You would go to file, options, Client settings. At the bottom of client settings you will see "Use legacy encryption (good for reverse compatibility
and multi-user databases". This will lower your encryption but you will be able to keep the rowlock in place. The legacy encryption does not have that limit.
If you are truly worried about security though the best thing you can do is to use SQL Server over Access's back-end. Fact is even with encryption I would be able to hack it wide open in minutes if I got my hands on it.
I hope that hoped you. Let me know if you have questions and good luck!
Dave
Hey Dave,
I forgot to ask one question that just hit me. With lowering the encryption to legacy (unfortunately SQL wasn't an option), do front ends still need to be sent out, or is it OK as one front end on a shared drive with legacy encryption (to keep the rowlock)?