Combo Box Value List

  • Thread starter Thread starter Gene
  • Start date Start date
G

Gene

I've run across it before but I can't find it now. Access 2000 only allows
so many characters in a value list for a combo box. I believe it's around
2000 characters. Anyone know for sure. I want to code and return the max.
characters if the string is to long.

Thanks
 
If you get that many characters in a value list you should be using a table
instead. Why wouldn't you just use a table for them in that case?
--
Bob Larson

Tutorials at http://www.btabdevelopment.com

__________________________________
 
Normally the list are very short. This is an exception. I'm appending a
couple of items on the list as text in code, the rest of the list is
generated from a recordsort.getstring function. I'm not currently using 2000
or I would just increase the string size until I got the error.
 
Back
Top