johndohnal
Registered User.
- Local time
- Today, 03:25
- Joined
- Sep 12, 2013
- Messages
- 41
Hi All,
I have a form with a combobox to select a combination of material, manufacturer, supplier, and packaging method. Each combination has its own material ID number. The combobox displays the name of the material, and there are several other boxes which display the manufacturer, supplier, and packaging method using the column function. I'd like to use a barcode reader to enter the material ID number in the combobox. However, when I use the reader, it shows the number, but then gives the following error message:
The text you entered isn't an item in the list. Select an item from the list, or enter text that matches one of the listed items.
Here is the SELECT statement for my combobox:
Any suggestions?
Thanks,
JohnD
I have a form with a combobox to select a combination of material, manufacturer, supplier, and packaging method. Each combination has its own material ID number. The combobox displays the name of the material, and there are several other boxes which display the manufacturer, supplier, and packaging method using the column function. I'd like to use a barcode reader to enter the material ID number in the combobox. However, when I use the reader, it shows the number, but then gives the following error message:
Here is the SELECT statement for my combobox:
Code:
SELECT DISTINCT tblMaterialSpecifications.[ID], tblMaterialSpecifications.[MaterialSupply], [tblMaterialSpecifications].[Ambient], [tblMaterialSpecifications].[MonitoredRefrigeration], [tblMaterialSpecifications].[MonitoredFreezer], [tblManufacturer].[Manufacturer], [tblSupplier].[Supplier], [tblPackaging].[PackageType] FROM tblPackaging INNER JOIN (tblSupplier INNER JOIN (tblManufacturer INNER JOIN tblMaterialSpecifications ON [tblManufacturer].[ID] = [tblMaterialSpecifications].[ManufacturerID]) ON [tblSupplier].[ID] = [tblMaterialSpecifications].[SupplierID]) ON [tblPackaging].[ID] = [tblMaterialSpecifications].[PackagingID] ORDER BY [tblMaterialSpecifications].[MaterialSupply];
Thanks,
JohnD
Last edited: