i did that - also Allow Additions - and it worked great.
only problem is I had a jump to record control using a combo box (it
jumped straight to the record id you typed in) and it stopped working
. any idea why ?
Unfortunately, when you tell Access that a form can't be edited, Access
takes that to mean that *none* of the controls on the form are allowed
to be changed by the user; not even unbound controls. This is
annoying, as it means handy gadgets like your "jump to" combo won't
work. There are two ways you might solve that problem:
1. You could set the form's AllowEdits property to Yes, but also set the
Locked property of each bound control on the form to Yes. Then the user
couldn't change those controls, but you could leave the "jump to" combo
unlocked.
2. You could tinker with the form's recordsource query to make it
nonupdatable, as John Vinson mentioned.