I have a series of checkboxes on my form, chb1, chb2 ..... chb10. I use some vba code, "for each ctl in controls" that goes through each checkbox. Ideally, I want to traverse each control in the same order (chb1...chb10). For some reason, it loops from chb1, chb2, chb3, chb4, chb6, chb7...chb10, chb5. It skips chb5 until towards the end of the loop. Is there something in the checkbox properties where I can control the loop order?