C
Chrisx
My boss would like my form to have search capability
where she could select a field that she wants to search,
enter a keyword and get the record(s) that meet the
criteria.
We have a database that keeps track of courses
offered. There is the course name as well as a
description of the course.
As an example, she wants to be able to select course
name or description and search for any occurrence of the
word "C++". If course name was selected it would return
courses where C ++ was in the course name, like "Intro to
C++", "Advanced C++ Topics", etc.
If description was chosen, it would return courses
that had descriptions like "This class is a pre-requisite
for C++", "Builds on fundamentals from Intro to C++", etc.
Would it be like 2 combo boxes, 1 to select the field
to check (course name, description) and another to enter
the string to search for? Can this be done?
If I didn't explain this clear enough, please let me
know. Thanks for the help.
where she could select a field that she wants to search,
enter a keyword and get the record(s) that meet the
criteria.
We have a database that keeps track of courses
offered. There is the course name as well as a
description of the course.
As an example, she wants to be able to select course
name or description and search for any occurrence of the
word "C++". If course name was selected it would return
courses where C ++ was in the course name, like "Intro to
C++", "Advanced C++ Topics", etc.
If description was chosen, it would return courses
that had descriptions like "This class is a pre-requisite
for C++", "Builds on fundamentals from Intro to C++", etc.
Would it be like 2 combo boxes, 1 to select the field
to check (course name, description) and another to enter
the string to search for? Can this be done?
If I didn't explain this clear enough, please let me
know. Thanks for the help.