If have 20 specific activex checkboxes and would like to loop thru them to set to TRUE versus one by one.
How do I convert
.CheckBox1 = True
.CheckBox2 = True
.CheckBox3 = True
.CheckBox4 = True
to
for i = 1 to 20
.Checkbox & Cstr(i) = True
next i
At least that was my attempt.