>>Understood... I even went so far as to give that group
>>"administer" permissions for all queries (and the message
[quoted text clipped - 9 lines]
> forms won't open without the message. Even tho the forms do
> all their stuff thru queries... hmmm.

Signature
Joan Wild
Microsoft Access MVP
>>>Understood... I even went so far as to give that group
>>>"administer" permissions for all queries (and the message
[quoted text clipped - 13 lines]
>
>I would guess that you have listboxes/comboboxes and it's the rowsources that you may have to check.
It turns out that *some* of the problem was due to some
"little changes" (hehe) I made in the CBF: domain lookup
stuff that wanted to interface with the tables directly,
instead of thru "owner's permissions" queries. But I
haven't gotten the last of the stickiness out of the
front-end yet.
>Is the recordsource of the form(s) a saved query, or a SQL statement?
Saved queries on everything. Actually, I did find one
combobox that was fed by SQL, which brings up another
question: in that SQL, I noticed it ended with the "owner's
permissions" statement. Does that statement get the job
done even in SQL, or do I still need to bolt it in with a
query (Access 2002 here)? It didn't seem to be hanging me
up, but I'm still not finished getting this front-end up to
100% yet, either.
Thanks for your thoughts, Joan.

Signature
croy
Joan Wild - 31 Dec 2007 15:18 GMT
> Saved queries on everything. Actually, I did find one
> combobox that was fed by SQL, which brings up another
[quoted text clipped - 4 lines]
> up, but I'm still not finished getting this front-end up to
> 100% yet, either.
A SQL statement is 'owned' by the user running it, so RWOP isn't useful in this case. You can use a SQL statement, but make sure it is based on RWOP queries and not tables. i.e. SELECT * FROM SomeRWOPQuery
You might find it useful to create a RWOP query for each table, and then base all your recordsources/rowsources on these.

Signature
Joan Wild
Microsoft Access MVP