In my VBA code I have a query string that pulls all the records from the main table (currently 131,000 records) - I pasted it into SQL view to verify that it does, in fact, pull 131,000 records. I bind it to a listbox like this:
listbox1.RowSource = SQL
When I check the listbox1.ListCount property it is only 65, 534.
At this point I'm not actually sure how many records are showing in the listbox. In other words should I trust the listbox1.ListCount property? Or is it deceiving me?
Is there a limit to the number of records in a listbox?
listbox1.RowSource = SQL
When I check the listbox1.ListCount property it is only 65, 534.
At this point I'm not actually sure how many records are showing in the listbox. In other words should I trust the listbox1.ListCount property? Or is it deceiving me?
Is there a limit to the number of records in a listbox?