integritycare
Technical User
Hello,
I would appreciate some help with this one please.
On a subform there is a checkbox which runs this code;
I want to be able to put a checkbox on the mainform so that it will set the checkbox2 to true on the subform and run the code. Have tried several ideas, but can not get it to work.
Many thanks
Integrity
I would appreciate some help with this one please.
On a subform there is a checkbox which runs this code;
Code:
Private Sub Check2_AfterUpdate()
If Check2 = True Then
Dim Rst As DAO.Recordset
Set Rst = Me.Recordset
With Rst
.MoveFirst
Do
ACS = "Paid"
.Edit
![ACS] = Me![ACS]
.Update
.MoveNext
Loop Until .EOF
End With
End If
End Sub
I want to be able to put a checkbox on the mainform so that it will set the checkbox2 to true on the subform and run the code. Have tried several ideas, but can not get it to work.
Many thanks
Integrity