Button Creation

R

rover

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 ?
 
T

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
 
Top