Thread: Table security
View Single Post
  #2  
Old May 27th, 2010, 05:16 PM posted to microsoft.public.access
Jeff Boyce
external usenet poster
 
Posts: 8,621
Default Table security

How is it that the user can "see"/get to the table?

How does the user know which table to add the record to?

One approach might be to hide the database window and only present forms to
the user.

Another might be to "hide" the tables.

Good luck!

Regards

Jeff Boyce
Microsoft Access MVP

--
Disclaimer: This author may have received products and services mentioned
in this post. Mention and/or description of a product or service herein
does not constitute endorsement thereof.

Any code or pseudocode included in this post is offered "as is", with no
guarantee as to suitability.

You can thank the FTC of the USA for making this disclaimer
possible/necessary.

"Ixtreme" wrote in message
...
I have an Access 2003 database. On a form a user can select values by
means of a combobox. If the user enters a value that is not present in
the underlying table, the 'on not in list' event asks the user if he/
she would like to add the new entry to the table. If the user answers
yes, a password form will be displayed asking the user for a password.
If the password is correct, the new entry will be added to the table.
However, the user could also bypass this by simply select the table
and add the new entry manually. How do I prevent the user from doing
that? Is there a way to force the user to always add new entries to a
table throught the form?