Hi,

What I'm trying to do is to write some code which will treat an array
of CheckBoxes just like they were option boxes so that only 1 CheckBox
can be selected at a time. But the catch is that the user should also
be able to not have any selections which is why I'm using the CheckBox.

For example, I have a control array of 4 CheckBoxes named chkShipPay.

If index 3 is currently selected and the user clicks on index 2, 3 should be unchecked
and 2 should be checked. If the user then clicks 2 again, it should be unchecked.

I tried various code in the click event but it allways seems to go in an infinite
loop and terminates..

Any help or ideas would be greatly appreciated..

Dan