J
Josh
Can someone get me started on making a search feature for my database.
Tables and fields:
tbPeople: PeopleID (PK), PeopleName
tblAnimals: AnimalID (PK), PeopleID (FK), AnimalName
tblColors: ColorID (PK), PeopleID (FK), ColorName
Relationships:
I have One-to-Many relationships from the People table to the other tables
using PeopleID as the foreign key:
tblPeople -> tblAnimals
tblPeople -> tblColors
Form:
I want to create a search button on the form that will work database wide,
so a user can search for an Animal or Color and the search results will be
all the People who have that search term. The user should then be able to
scroll through the result people by using the built-in navigation bar at the
bottom of the form.
Tables and fields:
tbPeople: PeopleID (PK), PeopleName
tblAnimals: AnimalID (PK), PeopleID (FK), AnimalName
tblColors: ColorID (PK), PeopleID (FK), ColorName
Relationships:
I have One-to-Many relationships from the People table to the other tables
using PeopleID as the foreign key:
tblPeople -> tblAnimals
tblPeople -> tblColors
Form:
I want to create a search button on the form that will work database wide,
so a user can search for an Animal or Color and the search results will be
all the People who have that search term. The user should then be able to
scroll through the result people by using the built-in navigation bar at the
bottom of the form.