Hi all,
What determines the order of controls when running the for command through a userforms controls?
ie if I have the code below:
Code
For Each ctl In PageViewer.Controls
If TypeOf ctl Is MSForms.CheckBox Then
MsgBox ctl.Name
End If
Next
The first msgbox i get is "Checkbox12"
the next is "Checkbox1" etc They are not in order.
Cheers.