Button Creation

  • Thread starter Thread starter rover
  • Start date Start date
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 ?
 
Wow! 200.
Dim ctl as Control

for each ctl in Me.Controls
If TypeOf ctl is CheckBox then ctl.Value = false
Next
HTH
Terry
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top