G
Guest
I have a subform1 that queries projects and supporting data from
various tables. There are 3 text boxes on subform 1 which
are used for a subform2 query to obtain additional information for
a particular project.
The fields on the subform2 are currently text boxes displaying the
results from the subform2 query and need to be converted to
combo boxes. What they will display is based on what is in the 3
text boxes of subform1. They will be used when entering new records
and will reflect the choices made in subform1.
The comboboxes need to be refreshed with each new record displayed in
subform1. I've tried putting a requery several places to no avail.
Does the requery need to be on the subform1 property Afterupdate:
This didn't work:
Private Sub Form_AfterUpdate()
Me!QueryLettersForm.cboResponseType.Requery
Me!QueryLettersForm.cboDELIVERY_TYPE.Requery
End Sub
Or on the textboxes of subform1 for each of the new comboboxes
going on subform2?
I've reviewed and tried the reomendations on
http://www.mvps.org/access/forms/frm0031.ht to no avail. I'm
obvousily missing something and need help to discover what
I'm doing incorrectly.
Thanks for your help!
various tables. There are 3 text boxes on subform 1 which
are used for a subform2 query to obtain additional information for
a particular project.
The fields on the subform2 are currently text boxes displaying the
results from the subform2 query and need to be converted to
combo boxes. What they will display is based on what is in the 3
text boxes of subform1. They will be used when entering new records
and will reflect the choices made in subform1.
The comboboxes need to be refreshed with each new record displayed in
subform1. I've tried putting a requery several places to no avail.
Does the requery need to be on the subform1 property Afterupdate:
This didn't work:
Private Sub Form_AfterUpdate()
Me!QueryLettersForm.cboResponseType.Requery
Me!QueryLettersForm.cboDELIVERY_TYPE.Requery
End Sub
Or on the textboxes of subform1 for each of the new comboboxes
going on subform2?
I've reviewed and tried the reomendations on
http://www.mvps.org/access/forms/frm0031.ht to no avail. I'm
obvousily missing something and need help to discover what
I'm doing incorrectly.
Thanks for your help!