dwAccessUser32
Programmer
I have a form where information on a person is entered (e.g., first name, lastname, dob, etc.)
I want to categorize the people by the type of person that they are on this form (e.g., employee, contractor, agent, salesman, etc.)
There are around a dozen categories of people coming from a lookuptable, tluPersonType.
The tricky part is that sometimes a person is a member of multiple categories (e.g., he might be an employee and a salesman) so I need to determine how to on one form let a person select multiple person categories.
I have seen listboxes on the web that allow people to make multiple selections. How can I do this with my existing table structure?
tblPeople
PersonID
PersonTypeID
FirstName
...
tluPeople
PersonTypeID
PersonType
Does anyone have an idea on how to solve this problem? Any advice will be greatly appreciated.
I want to categorize the people by the type of person that they are on this form (e.g., employee, contractor, agent, salesman, etc.)
There are around a dozen categories of people coming from a lookuptable, tluPersonType.
The tricky part is that sometimes a person is a member of multiple categories (e.g., he might be an employee and a salesman) so I need to determine how to on one form let a person select multiple person categories.
I have seen listboxes on the web that allow people to make multiple selections. How can I do this with my existing table structure?
tblPeople
PersonID
PersonTypeID
FirstName
...
tluPeople
PersonTypeID
PersonType
Does anyone have an idea on how to solve this problem? Any advice will be greatly appreciated.