PDA

Click to See Complete Forum and Search --> : And here comes another question from me :-)


Tiger Claw
Jan 15th, 2000, 02:52 AM
I've got a listbox and now I'm wondering hwo I should do so that I won't return to the beginning every time I click it (or use the arrows).
If I click item 100 (or use the arrows) it is loaded and then the listbox is back to item 1-10 again and that is disturbing since I'm building up a large index and need the ability to look throught it without having to spend a few seconds finding the next item in the list.

Lil Dave
Jan 15th, 2000, 12:12 PM
if you use a DBCombo box with the Style property set to 2, you can keep pressing the first letter of the item you want and the DBCombo box will step through the listfields displaying each value in turn.

I think that if you have the Drop Down part dropped down, that you can press the key and it will jump to that part of the list, although I can't remember if it does

ivyl
Jan 17th, 2000, 07:44 PM
You can try setting the List1.List to the next item after you have clicked on the list.

example:
List1.List = 5

You can get the number of items in the list from the List1.ListCount variable.