Hi again!
I have a form (parent) that has a subform (child). I know how to make it so the parent form's feilds opens up null, but I need the subform (child) to open up null, too, when this form opens up.
From the parent form the subform populates symbols based on the parent form which has some combo boxes to choose from and one text box to enter a number into. When the end user enters or choses the data in the parent form a query makes symbols out of that data in the subform.
I don't know how to make the subform clear out on open.
Whilst in the subform I clicked on it and On Open I placed code:
me.bbl = null
but that didn't work (bbl is a field name)
and I tried in the parent form
me.subformname. requery
didn't work
and I even tried in the parent form
me.subformname. bbl = null
It didn't work either, but I really don't know if that's a real code, but I tried it.
In a nutshell I need the parent and the child fields on open to be clear (null). The child (subform) is a query.
Suggestions?
thank you very much!
Faith
I have a form (parent) that has a subform (child). I know how to make it so the parent form's feilds opens up null, but I need the subform (child) to open up null, too, when this form opens up.
From the parent form the subform populates symbols based on the parent form which has some combo boxes to choose from and one text box to enter a number into. When the end user enters or choses the data in the parent form a query makes symbols out of that data in the subform.
I don't know how to make the subform clear out on open.
Whilst in the subform I clicked on it and On Open I placed code:
me.bbl = null
but that didn't work (bbl is a field name)
and I tried in the parent form
me.subformname. requery
didn't work
and I even tried in the parent form
me.subformname. bbl = null
It didn't work either, but I really don't know if that's a real code, but I tried it.
In a nutshell I need the parent and the child fields on open to be clear (null). The child (subform) is a query.
Suggestions?
thank you very much!
Faith
Comment