I want a set of option buttons on a form with NONE selected

When the form loads the first option is always selected
doing this:
Code:
Option Explicit

Private Sub Form_Activate()
Option1(0).Value = False
End Sub
will unset it but If I then minimize the form it becomes set again when I restore it.