wh00t
Registered User.
- Local time
- Today, 00:54
- Joined
- May 18, 2001
- Messages
- 264
I have a combo box on a form using the following row source
SELECT DISTINCTROW [tblVanOrders].[OrderID], [tblVanOrders].[OrderNumber] FROM [tblVanOrders];
OrderID is an autonumber field in the table and OrderNumber is a number field, the table contains 21745 records.
The problem I'm having, is that the combo box does not list all the records in the table, it also does not cut off at a certain point, it appears that random chunks from the table are missing. I have checked the table, and all records are in the correct format. is there something I'm missing or shall I just use a standard find record button?
SELECT DISTINCTROW [tblVanOrders].[OrderID], [tblVanOrders].[OrderNumber] FROM [tblVanOrders];
OrderID is an autonumber field in the table and OrderNumber is a number field, the table contains 21745 records.
The problem I'm having, is that the combo box does not list all the records in the table, it also does not cut off at a certain point, it appears that random chunks from the table are missing. I have checked the table, and all records are in the correct format. is there something I'm missing or shall I just use a standard find record button?