restrict fields or columns

C

CBC

The database contains 69 records. Ther will be no more. I want the user to
be able to edit certain columns and restrict cursor movement to the editable
area. Also I do not want the user to delete or append any records.
 
T

tina

create a form bound to the table, and have your user interact with the data
there, rather than directly in the table. you can set the form's
AllowAdditions and AllowDeletions properties to No, and set the Enabled
property to No and the Locked property to Yes for specific controls, to
control what the user can do in the form.

hth
 
Top