Option Group

  • Thread starter Thread starter Aurora
  • Start date Start date
A

Aurora

I am using Access 2000.

In form view I have an option group for "Yes" or "No"
answer. Can I add a hyperlink on the Yes option to take
the user to another form immediately?

Aurora
 
Hi Aurora

Use the AfterUpdate event of the option group. Assuming the OptionValue for
the "Yes" button is -1 (True):

If Me.OptionGroupName = -1 Then
DoCmd.OpenForm ...
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