Hi!
I'd like to know how can I select/deselect the checkboxes for all records on the subform when I select/deselect the checkbox on the main form?
I tried the code
but this only select the first record of all records on the subform.
Any suggestion would be appreciated.
I'd like to know how can I select/deselect the checkboxes for all records on the subform when I select/deselect the checkbox on the main form?
I tried the code
Code:
Private Sub MySelection_AfterUpdate()
Me.Subform2.Form!MySelection1.Value = Me.MySelection.Value
End Sub
but this only select the first record of all records on the subform.
Any suggestion would be appreciated.