Make subform visible when a field has a particular value

  • Thread starter Thread starter JJ1109
  • Start date Start date
J

JJ1109

Hi,

I have a field in my form that is a text field, but will only be entered as
Y or N. If the field is Y, I want a subform to be displayed, if it's N the
subform can stay hidden. I can't work out exactly how / what to have the
subform bound to to make this work.

thanks
JJ
 
Use the link master field and link child field to link the subform to the
main form.
Use the after update event of the textbox to show or hide the subform.
Use the current event to show or hide the subform when opening an existing
record for editing.


Jeanette Cunningham MS Access MVP -- Melbourne Victoria Australia
 
Thanks Jeanette,

So in the subform I need the same field that's the master field in the main
form, to be the child?

How do I write the expression to make the subform be visible or not? I have
no idea how to write them :(

thanks again
JJ
 
If you use the wizard to put the subform on the main form, access will give
you a list of choices for the master and child link fields.

To show the subform, the code is-->
Me.[NameOfSubformControl].Visible = True

To hide it
Me.[NameOfSubformControl].Visible = False


Replace NameOfSubformControl with the correct name for your form.
Note that the name of the subform inside the subform control may not be the
same as the name of the subform control.



Jeanette Cunningham MS Access MVP -- Melbourne Victoria Australia
 
Back
Top