Allow edits PROPERTY

  • Thread starter Thread starter Dimitris Nikolakakis
  • Start date Start date
D

Dimitris Nikolakakis

I have created a form and I have set the AllowEdits = false in the
properties of form. I have created a button that
"Forms!FCompanies.AllowEdits = True" so the user can make changes in record.

I have inserted a subform in my form. I saw that the records of subform are
not deletable and editable even I press the button that allow edits of the
form.

How can I allow edits, deletes in the subform, no mater what is set in the
properties of form?

thanks in advance.
 
Dimitri,

You need to do it separately for the subform. The syntax is:

Forms![FormName]![SubformName].Form.AllowEdits = True

HTH,
Nikos
 
Back
Top