FryGirl
Well-known Member
- Joined
- Nov 11, 2008
- Messages
- 1,368
- Office Version
- 365
- 2016
- Platform
- Windows
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
to
At least that was my attempt.
How do I convert
Code:
.CheckBox1 = True
.CheckBox2 = True
.CheckBox3 = True
.CheckBox4 = True
to
Code:
for i = 1 to 20
.Checkbox & Cstr(i) = True
next i
At least that was my attempt.
Last edited: