Before I posted I did do a search and came up with most of my answer, but now I'm having a problem with the execution of it. I have a form called "storage_form" which has a combo box on it for the DESCRIPTION field of my table. Like alot of people I want to have duplicates eliminated because there are alot of redundant parts, etc. The main reason for a type-in combo box was to have the AutoComplete, again because there are alot of redundant parts.
Anyways my row source for the combo box is such:
SELECT DISTINCT storage_table.[Primary Key], storage_table.Description FROM storage_table ORDER BY [Description]
I have Column Count set to 2, Column Width set to 0";1.5417", Bound Column set to 2, Limit To List set to NO, and AutoExpand set to YES. I set the bound column to 2 because I was getting an error message saying that, "The value you entered isn't valid for this field"
The other problem I am encountering is that if I type something in the combo box other than what is already listed, and then add that record, when I am adding the next record that value is not available in the list until I close the form and open it again.
So what am I doing wrong?
Anyways my row source for the combo box is such:
SELECT DISTINCT storage_table.[Primary Key], storage_table.Description FROM storage_table ORDER BY [Description]
I have Column Count set to 2, Column Width set to 0";1.5417", Bound Column set to 2, Limit To List set to NO, and AutoExpand set to YES. I set the bound column to 2 because I was getting an error message saying that, "The value you entered isn't valid for this field"
The other problem I am encountering is that if I type something in the combo box other than what is already listed, and then add that record, when I am adding the next record that value is not available in the list until I close the form and open it again.
So what am I doing wrong?