Protecting columns

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a simple DB with only 69 records. I need to restrict users from
editing the 1st two columns. Also I need to prevent the user from deleting or
appending records.

Thank
BC
 
BC,

On your Form, set the Locked property to Yes for the controls bound to
the fields you want to protect, and probably set their Enabled property
to No. And set the AllowAdditions and AllowDeletions properties of the
form itself to No.
 
Back
Top