allow edit = false

  • Thread starter Emergency Power
  • Start date
E

Emergency Power

When I open my form called frmClients I do not want to let the user to be
able to edit unless they use the edit button. I set the allow edits to "no"
in properties and the edit button is coded on click to Me.AllowEdits = True
Why is the user able to edit the client info without the edit button clicked ?
Thank you for your help!
 
D

Dirk Goldgar

Emergency Power said:
When I open my form called frmClients I do not want to let the user to be
able to edit unless they use the edit button. I set the allow edits to
"no"
in properties and the edit button is coded on click to Me.AllowEdits =
True
Why is the user able to edit the client info without the edit button
clicked ?
Thank you for your help!


Do you maybe have code that dirties the record (modifies the value of a
bound control, or a field in the form's recordset)? Once the record is
dirty, even if it was dirtied programmatically, the AllowEdits property is
ignored and the user can make further modifications.
 

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

Top