Make subform visible when a field has a particular value

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
 
J

Jeanette Cunningham

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
 
J

JJ1109

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
 
J

Jeanette Cunningham

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
 

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

Top