How do I keep records entered in a table from ever being changed?

R

rockyd7

How do I keep records entered in a table from ever being changed by mistake?
I don't know where to begin. Anyone ever done this? I want to be able to
enter the record once and then make sure it never gets changed by mistake.

Thanks!

Rocky
 
R

Rick Brandt

rockyd7 said:
How do I keep records entered in a table from ever being changed by mistake?
I don't know where to begin. Anyone ever done this? I want to be able to
enter the record once and then make sure it never gets changed by mistake.

Set your form properties...

AllowAdditions = Yes
AllowDeletes = No
AllowEdits = No
 
Top