Hey,
I'm trying to make some sort of intellisense look a like for an editor I'm working on. When the user types in the richtextbox and the letters match a word a listview will pop-up and the matched word will be selected.
the problem is the focus is still on the richtextbox so all the key presses will go to that control, which is good, except that if there's a match I need the Return and arrow keys to trigger in the listview and not in the richtextbox.
is there some way of using the keypress event of the richtextbox to send those keys to the listview?
thanks