Force user option

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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?
 
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.
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top