Adding Items to Combobox

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

Guest

I am using a C# combobox control. There are too many items to add right from
the start, I want to add 20 or so, then when the user cursors down to the
last one and cursors down again, I will add the next 20 so that they can
continue. Is there an event for when the user has reached the end of the list?

The only other was I can think of to handle it would be to capture each time
they pressed the up or down arrow, then see if the value changed, and if not,
add items. Is there not a better way than that? Thanks.
 
Thanks anyway, I trapped the KeyUp for when they pressed the Down key, and
added more records then, and it worked fine.
 
Back
Top