I'm sorry to repeat myself, I just wanted to ask if anyone knows a way to
do this that wuld work with standard TListBox. Or if there's some
(preferably free) component that won't limit me to 32000 lines
Rene
--
Ing.Buero R.Tschaggelar - http://www.ibrtses.com
Some people are so impatient <g>.
TListbox is only limited on Win9x, because it is implemented in 16 bit code
on that platform. Anyway, leaving aside the fact that such a huge list is
completely useless as a UI element (do you want to scroll through 32000 items
to find something?), there are alternatives. A Tstringlist does not have the
limit, so you can use it to hold the strings and use a TDrawGrid or a
TListview in virtual mode to display the strings.
--
Peter Below (TeamB)
Use the newsgroup archives :
http://www.mers.com/searchsite.html
http://www.tamaracka.com/search.htm
http://groups.google.com
http://www.prolix.be
--
Robert
Bogdan Ribic wrote in message <3cd3b3df_2@dnews>...
Useless? I disagree if you add a select as you type search method (an
example how to do this is even included in the Delphi help file). Then a
single component/selected data (+ maybe an associated object) is easier to
reference later in the code.
Cheers,
Kevin
In some apps I am using a TLMDListbox to replace the functions of a
database. Whilst it is unlikely to happen often, I can see the odd occasion
where the Listbox may exceed 32k.
Thanks,
Mark Williams
Bogdan Ribic <n...@available.here> wrote in message news:3cd3b3df_2@dnews...
--
Robert
Mark Williams wrote in message <3cd6e2a2_2@dnews>...