Generally, if you can get in through the front-end you can also get in
through the back-end.
First read the Access Security FAQ at
http://support.microsoft.com/support...ent/secfaq.asp to learn how
to secure your database.
If you give users a login/password to access the system, anyone with the
know-how could log into the Access database directly. If you just hard-code
the login/password into the application, it can be cracked to find the string
where you store it and then they could still get in.
The best solution would be to follow the steps in the FAQ, create a new
group with minimal rights, and create users for that group that have a
login/password you can give out to whoever needs it. You can prevent those
users from having design permissions inside the database, but they'll still
be able to see the data (again, only if they know how to get into a secured
Access database).
"Jesse Aufiero" wrote:
> I intend to use an access file as the backend for my very data-driven vb.net
> application. I need to secure this file so that it can only be access by a
> user through the vb.net front end. How can I secure the mdb file so that no
> one can look at it thru the 'back door'?
>
> Thanks!
>
>
>