Jo Anne,
Another thing that you might want to check is just what the record source of
your form is. If it is a query, is the query updatable? A quick and dirty
way to check this is to run the query outside of your form if it is a saved
and named query and try to make a change to some item of data in it. If you
cannot make a change in the query's results, then your users will not be
able to do so in the form. If you are using a SQL string as the record
source, you can click the button with the three little dots that is found at
the right edge of the form's record source property. This will show a Query
Design for that SQL string. You can run the query from there and see if it
is updatable.
All of the above is another way of saying that you can set the RecordSet
Type as Dynaset and grant appropriate security, but if you are using a query
as the RecordSource of your form, the query itself must be updatable for
changes to be made.
For the moment, that is the only additional thing I can suggest as a cause
that is not related to Access Security.
--
Cheryl Fischer
Law/Sys Associates
Houston, TX
Jo Anne said:
I set up each user to have view, create, add and del rights on all tables,
queries, forms, etc in Workgroup Security. Per Cheryl Fischer's
sugsestions, I checked that each form allowed edits, deletions, and
additions.