D
deb
I have a search form called fSearch. It is a continuous form that searched
for specific records from the tDeliverable table. Contains ProjectID and
DelivID.
I also have a fProject (ProjectID) form that has a subform called
fDeliverable(ProjectID and DelivID).
In the FSearch form, when I click on a button next to a specific Deliverable
record I want the fProject form to open and display the selected Project in
the tProject mainform and the selected Deliverable in the fDeliverable
subform.
The below button criteria only opens to the Project in the main form.
stLinkCriteria = "[ProjectID]=" & Me![ProjectID] DoCmd.OpenForm
stDocName, , , stLinkCriteria
Thanks in advance
for specific records from the tDeliverable table. Contains ProjectID and
DelivID.
I also have a fProject (ProjectID) form that has a subform called
fDeliverable(ProjectID and DelivID).
In the FSearch form, when I click on a button next to a specific Deliverable
record I want the fProject form to open and display the selected Project in
the tProject mainform and the selected Deliverable in the fDeliverable
subform.
The below button criteria only opens to the Project in the main form.
stLinkCriteria = "[ProjectID]=" & Me![ProjectID] DoCmd.OpenForm
stDocName, , , stLinkCriteria
Thanks in advance