jeffmoseler
Well-known Member
- Joined
- Jul 16, 2004
- Messages
- 540
I have a bound Parent form with a Bound Listbox that navigates the form to a certain record.
I would like to be able to filter the Listbox with a "search" text box to make it easier to find the records I need to update with the child subforms.
I thought it would look something like this:
SELECT tblLeads.DotNo, tblLeads.LegalName
FROM tblLeads
WHERE (((tblLeads.LegalName) Like "*Forms!frmContactHistory!Text26*"))
ORDER BY tblLeads.LegalName;
But I think I am running into an issue because the form and the listbox are bound to fields in the table. Is there a creative way around this or do I have to unbind the form and listbox?
I would like to be able to filter the Listbox with a "search" text box to make it easier to find the records I need to update with the child subforms.
I thought it would look something like this:
SELECT tblLeads.DotNo, tblLeads.LegalName
FROM tblLeads
WHERE (((tblLeads.LegalName) Like "*Forms!frmContactHistory!Text26*"))
ORDER BY tblLeads.LegalName;
But I think I am running into an issue because the form and the listbox are bound to fields in the table. Is there a creative way around this or do I have to unbind the form and listbox?