Question : uncheck individual checkbox in option frame

I have an access form which has multiple option groups on it.  I need to be able to deselect all checks in any particular option group (but each option group individually).  How can I clear the checks if needed? Best if it's easy to do, and not in code.
It's a form that is reused to score tests, not to store data, so when new test comes in for a particular client, the choice is either to clear the entire form or to change the data, but if you change the data and the person hasn't completed a particular question, that particular question needs to be blank, or unchecked.  So it's generally quicker to change data instead of doing data entry on all questions. Would I need buttons for EVERY Question (there are 34 questions, each with 3 or 4 possible answers within option frames)  Oh, and the database is not meant to be modified, although I have been able to change simple things.
Thanks.

Answer : uncheck individual checkbox in option frame

Actually set it to null.
1:
2:
3:
Private Sub Frame0_DblClick(Cancel As Integer)
    Frame0 = Null
End Sub
Open in New Window Select All
Random Solutions  
 
programming4us programming4us