I have a form called "ParentF" with a datasheet subform called "ChildSubF". "ChildSubF" has all allow edit,filters, deletes etc set to "yes". My "ParentF" has allow edit set to "No".
On opening, both parent and child forms aren't editable which is the way I want it.
I have created a button and attached the following basic code to enable the user editability after clicking the button.
Private Sub Command41_Click()
Me.AllowEdits = True
End Sub
This allows all of the fields on the "ParentF" to be edited but the fields in the subform remain locked.
Is there away to allow the sub form to be editable as well.
Thanks in anticipation.
On opening, both parent and child forms aren't editable which is the way I want it.
I have created a button and attached the following basic code to enable the user editability after clicking the button.
Private Sub Command41_Click()
Me.AllowEdits = True
End Sub
This allows all of the fields on the "ParentF" to be edited but the fields in the subform remain locked.
Is there away to allow the sub form to be editable as well.
Thanks in anticipation.