G
Guest
I don't understand what you mean by the in the after update event of the
scheduled appointment check box. Where is that?
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.
--
HTH
Mr B
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.
scheduled appointment check box. Where is that?
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.
--
HTH
Mr B
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.