R rover Feb 22, 2007 #1 I have form which has over 200 check boxes I want to create button to clear the selection when made. How can I do this ?
I have form which has over 200 check boxes I want to create button to clear the selection when made. How can I do this ?
G Guest Feb 27, 2007 #2 Wow! 200. Dim ctl as Control for each ctl in Me.Controls If TypeOf ctl is CheckBox then ctl.Value = false Next HTH Terry
Wow! 200. Dim ctl as Control for each ctl in Me.Controls If TypeOf ctl is CheckBox then ctl.Value = false Next HTH Terry