This will probably seem really easy, but for some reason I can't even come close to developing and idea for how to make this work.
I have a database of people, named tblPeople, with about 20 fields. Among these fields are: First, Middle, and Last. Which, obviously, are meant to hold the First, Middle, and Last name of the customer respectively.
I am designing a form where the user will select one of these customers, and after update of the combobox - display all the information, the other 16 fields (one field is the primary key) on the form. I have that worked out but I cannot seem to populate my combobox correctly.
When the user scrolls through the combo box I want it to appear as if their choices are the whole name of the customer. I.E. It would look like Mikey T Mouse was an option in the box. The problem is that if I change the number of columns I get something like:
001 | Sales | Mikey | T | Mouse
so it includes the first few fields - which I don't want, and lines between the fields - which I really don't want. I want it just have their name, and then it would (behind the scenes to the user) use the customer id key to reference the other information as neccessary. Any suggestions as to how to achieve this? Thanks in advance for all of your help!
I have a database of people, named tblPeople, with about 20 fields. Among these fields are: First, Middle, and Last. Which, obviously, are meant to hold the First, Middle, and Last name of the customer respectively.
I am designing a form where the user will select one of these customers, and after update of the combobox - display all the information, the other 16 fields (one field is the primary key) on the form. I have that worked out but I cannot seem to populate my combobox correctly.
When the user scrolls through the combo box I want it to appear as if their choices are the whole name of the customer. I.E. It would look like Mikey T Mouse was an option in the box. The problem is that if I change the number of columns I get something like:
001 | Sales | Mikey | T | Mouse
so it includes the first few fields - which I don't want, and lines between the fields - which I really don't want. I want it just have their name, and then it would (behind the scenes to the user) use the customer id key to reference the other information as neccessary. Any suggestions as to how to achieve this? Thanks in advance for all of your help!