Stopping Changes

  • Thread starter Thread starter 3ddy
  • Start date Start date
3

3ddy

I have a form with a datasheet subform. What I am trying
to do is once the user enters a record in the subform,
lock that record so they cannot modify it anymore, be it
modifying a field or deleting a record. Any help would be
appreciated.
 
I have a form with a datasheet subform. What I am trying
to do is once the user enters a record in the subform,
lock that record so they cannot modify it anymore, be it
modifying a field or deleting a record. Any help would be
appreciated.

Be sure that the following properties are set on the form you're using
in the subform:

Allow Additions = True
Allow Edits = False
Allow Deletions = False

and make sure that they NEVER make ANY mistakes on the initial
entry... <g>
 
Back
Top