It's been a while since I've needed to do something like this:
Anyone remember how to call the AfterUpdate sub?
Code:
For Each ctl In frm.Controls
If ctl.ControlType = acCheckBox Then
ctl.Value = False
[COLOR="Red"]Call frm.Controls(ctl.Name)_AfterUpdate[/COLOR]
End If
Next ctl
Anyone remember how to call the AfterUpdate sub?