M
Mr. JYC
Hello,
I have a form with a bunch of check boxes. The check boxes appear in a
certain order on the form. I wrote some code that would check to see if the
check boxes were checked. The pseudo code follows:
dim ctl as control
for each ctl in me.controls
check to see if check box is checked
next ctl
I need the checks to be done in the order that they appear on the form. I
added in a new check box in the middle of the other check boxes. When the
code does the checks, the new check box is always checked last. Is this
something I can change or is this default behavior? I need to have it check
in the order it appears on the form.
I have a form with a bunch of check boxes. The check boxes appear in a
certain order on the form. I wrote some code that would check to see if the
check boxes were checked. The pseudo code follows:
dim ctl as control
for each ctl in me.controls
check to see if check box is checked
next ctl
I need the checks to be done in the order that they appear on the form. I
added in a new check box in the middle of the other check boxes. When the
code does the checks, the new check box is always checked last. Is this
something I can change or is this default behavior? I need to have it check
in the order it appears on the form.