Programming language is vb.net
A:
Sounds like you want to implement auto-complete on the combo box. The easiest way to do this is inherit from the system combo, and handle the KeyUp
event to implement the functionality.
Rowland Shaw
2010-04-18 20:48:06
this is not what i want I want to disable dynamic searching in listbox not in combo box and i already exactly earlier what i want
tushar
2010-04-28 04:52:32
That's how I interpreted your description "Say i type L Then i type M into the listbox Then focus should move to string starting with LM " - perhaps you could clarify further?
Rowland Shaw
2010-04-28 07:48:57
yes I want exactly what you are saying if I type L and then M in Listbox then focus should move to string starting with LM so that user can selected that particular item form the listbox I have written the code on listbox keydown event but default behaviour of listbox override my code and focus moves to string starting with say M(second letter that is typed ) in the listboxPlease Help Me?
tushar
2010-05-03 12:47:12