Force user option

R

Raul Sousa

I have a form with an option box.
I want to force the user to choose an option before anything else.

Any idea on a way to accomplish this?
 
R

ruralguy via AccessMonster.com

Set the focus to the OptionGroup in the Load event of the form and text for
completion in the exit event of the OptionGroup and Cancel to hold the user
in the control.
 
K

Klatuu

Great Idea RG!
To add some detail, I would suggest setting the Default Value of the option
group to Null and in the Exit Event:

If IsNull(Me.MyOptionGroup) Then
MsgBox "Select an Option before Proceeding"
Cancel = True
End If
 
Top