combo box inquiry

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am seeking info on the combo box. I realize there is a limit to the number
of items that can be listed. But what I am wondering is at around how many
items will the combo box slow down (ie 500, 1000, 5000)? What is a rule of
thumb, so to speak? Just wondering as our access db will be getting an
infusion of about 3000 more clients by end of year. So I should be
considering an alternative method of display the client list.
Thanks for any feedback.
*** John
 
ComboBox can have up to 64K rows in the RowSource. However, that's a lot
for the user to select one from.

Sort the names alphabetically and use AutoExpand on the ComboBox. Tell the
user to type the first few letters and they should get very close to the
name he/she wants.

You may want to consider in the future to use a set of "cascaded" ComboBoxes
where the user select the first character for the name and the second
ComboBox is filtered to show only the names with the same starting
character. You can use a Label or a TextBox instead of the first ComboBox.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Combo Box Help 7
combo box 3
Combo box item selesction 3
Combo Box Problems 2
Search in combo box 3
Combo box required 2
Combo Box 3
Cascading Dependant combo boxes 0

Back
Top