Edit Permissions not working

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I created a form that only certain people can open. I want them to be able to
view, but not edit. On the properties box for the the form, I put no for
Allow Edits, Allow Editions, Allow Additions. But I can still go in and make
changes. Any ideas? Thanks!
 
All controls should be locked if Edits, Deletions, and Additions are set to
No. I'd first try rebuilding your form to make sure you haven't missed
something.

You can try using the code at:

http://www.datastrat.com/Code/LockIt.txt

to lock individual controls, if you like.
 
=?Utf-8?B?SmFjcXVpZQ==?= <[email protected]>
wrote in
I created a form that only certain people can open. I want
them to be able to view, but not edit. On the properties box
for the the form, I put no for Allow Edits, Allow Editions,
Allow Additions. But I can still go in and make changes. Any
ideas? Thanks!

How are you opening the form? If via the docmd.OpenForm method, or
a macro, make sure that your datamode is set to 'read only'
 
The data mode/read only in the macro was the clinker!! Thank you so much, Bob!!
 
Bob Quintal said:
=?Utf-8?B?SmFjcXVpZQ==?= <[email protected]>
wrote in


How are you opening the form? If via the docmd.OpenForm method, or
a macro, make sure that your datamode is set to 'read only'

If the form is opened Read Only, NO ONE will be able to make any edits.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top