I have a form called search_frm which contains three fields:
a Documentation Type field (qDocType),
a Documentation Ref field (qDocRef),
and a Documentation Desc field (qDocDesc).
I have a search button that launches a query to Search for any
text that is typed into these form fields from my table (Doc_tbl).
Here is the SQL of my query:
Code:
SELECT Doc_tbl.Type, Doc_tbl.RefNum, Doc_tbl.CurrRev, Doc_tbl.Title, Doc_tbl.Link
FROM Doc_tbl
WHERE (((Doc_tbl.Type) Like "*" & Forms!search_frm!qDocType & "*") And ((Doc_tbl.RefNum) Like "*" & Forms!search_frm!qDocNum & "*") And ((Doc_tbl.Title) Like "*" & Forms!search_frm!qDocTitle & "*"));
I would like to display the results of my query in a continuous subform on my
main form so that it updates or disappears depending on the results whenever the
query runs, but not sure how to set this up and would appreciate any suggestions
an guidance on this task.
Thanks