dansleight
IS-IT--Management
I'm trying to loop through the controls in a control and perform an action on each one. It works fine with most controls but doesn't include any checkbox controls. Any ideas?
for(int i=0;i<thisControl.Controls.Count;i++)
{
clearBindings(thisControl.Controls);
}
checkBox controls are skipped with this loop.
for(int i=0;i<thisControl.Controls.Count;i++)
{
clearBindings(thisControl.Controls);
}
checkBox controls are skipped with this loop.