I have a combo box that is pulling job IDs from my Job table. The rowsource of the combo box is "SELECT [Job].[Job_ID] FROM Job" I have Limit to List set to "No" so that a user will be able to type "1*" in the combo box without getting an error message.
This doesn't appear to work because I still get the error message: "The value you entered isn't valid for this field. For example, you may have entered text in a numeric field or a number that is larger than the FieldSize setting permits." I'm guessing that it is having issues because I am entering a string value and not a numeric value, since the Job_ID field is a number.
I have tried using the NotInList procedure to override the error message, but it seems like that code only runs when "Limit to List" is set to "Yes." I am able to suppress the error message, but the combo box still demands that I select a value in the list. Does anyone have any ideas on how I can get around this? Thanks!!
This doesn't appear to work because I still get the error message: "The value you entered isn't valid for this field. For example, you may have entered text in a numeric field or a number that is larger than the FieldSize setting permits." I'm guessing that it is having issues because I am entering a string value and not a numeric value, since the Job_ID field is a number.
I have tried using the NotInList procedure to override the error message, but it seems like that code only runs when "Limit to List" is set to "Yes." I am able to suppress the error message, but the combo box still demands that I select a value in the list. Does anyone have any ideas on how I can get around this? Thanks!!