I have a continuous form with a bound check box. This check box is used to choose records to be printed as labels. (I originally tried this as unbound, but it does not work on the continuous form).
My question is, "how do I clear this check box for ALL records when the form is closed?" I found this code
Dim ctl As Control
For Each ctl In Me.Controls
If ctl.Tag = "T" Then ctl.Value = 0
Next
when looking through other posts, but it only clears the current record, not ALL records.
Thanks for your help!
My question is, "how do I clear this check box for ALL records when the form is closed?" I found this code
Dim ctl As Control
For Each ctl In Me.Controls
If ctl.Tag = "T" Then ctl.Value = 0
Next
when looking through other posts, but it only clears the current record, not ALL records.
Thanks for your help!