you need to make the value of the optionbutton to false. if you want to unselect them all you could make a control array of them and loop through them or something like this.
VB Code:
Dim ctr As Control For Each ctr In Me.Controls If TypeOf ctr Is OptionButton Then ctr.Value = False End If Next ctr
casey.




Reply With Quote