Hello,
I've created a option group in my form. I've added some checkboxed into it using the control wizzard. Now I would like to add some more checkboxes to the option group.
I can create them outside the option group and dragged it into it but when I run this code:
The added checkbox is not seen within the option group? How can I do this?
Thanks in advance.
I've created a option group in my form. I've added some checkboxed into it using the control wizzard. Now I would like to add some more checkboxes to the option group.
I can create them outside the option group and dragged it into it but when I run this code:
Code:
For Each Control In Me.FrmTest.Controls
If TypeOf Control Is CheckBox Then
MsgBox Control.Name
End If
Next
Thanks in advance.
Last edited: