Form Question

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

Guest

In my form, I have a scheduled appointment and walk-in appointment radio
button. I also have a Registered check box button on the form.

I want to know how to make the registered button appear only when the
scheduled appointment check box is selected.

And I would like to know how to make going to select a scheduled or walkin
appointment mandatory, before proceeding to the next page. I know that there
is some code involved.

Can someone please help me with these problems.

Thank you
 
To have Registered button to appear only after the scheduled appointment
check box is checked, first set the visible property of the Registered button
to No.

The in the after update event of the scheduled applintment check box, place
the following code:

If me.TheNameOfYourCheckBox = true
me.TheNameOfYourRegisteredButton.Visible = True
Else
me.TheNameOfYourRegisteredButton.Visible = False
EndIf

On the other issue, I am not sure just what you mean by "next page". If you
can provide a little more info perhaps someone can help.
 

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