Add New Record / Make Existing Records Read Only

  • Thread starter Thread starter Ron
  • Start date Start date
R

Ron

I would like open a form to add a new record and let the user browse existing
records without being able to modify them. How can I accomplish this?
Thanks
 
I would like open a form to add a new record and let the user browse existing
records without being able to modify them. How can I accomplish this?
Thanks

Set the Form's Allow Additions property to Yes, and its Allow Edits property
to No.
 
Ron said:
I would like open a form to add a new record and let the user browse
existing records without being able to modify them. How can I
accomplish this? Thanks

One way would be to add a field named "UpDate" and mark it false when you
add a record.
Then use the on-;oad event to see if it is marked false and make it read
only.
 
Back
Top