One way to do this is to not use a subform and open another form. In the
form's design mode, select the Yes/No control and find its After Update event
under the Event tab. Select [Event Procedure] and click on the ... button at
the end of the box.
For the Yes/No control's AfterUpdate event, create a procedure like:
DoCmd.Close acForm, "OtherForm"
If Me.YesNoControl = -1 then
DoCmd.OpenForm "OtherForm"
End If
If you use a subform, use something like this for the AfterUpdate event:
Me.SubFormControl.Enabled = 0
If Me.YesNoControl = -1 then
Me.SubFormControl.Enabled = -1
End If
You could also use the subform's .Visible or .Locked property depending on
what you want to do.
Ok...I can understand most things in Access but I am a little confused on
your reply...I guess I need some step-by-step instructions. Sorry
Jamie
Use the control's AfterUpdate event. In the procedure, check for the
control's value. If it is "Yes" then open the secondary form or enable the
[quoted text clipped - 4 lines]
user clicks on it for "yes" it will drop down or open a subform to enter the
feedback information. Is this possible? If so, how would I do this?