I have a key press event, and I want the combobox to handle the keypress if the input is not textual. I.E. If it is the up or down key, let the combobox handle it like it normally would, but if it's punctuation, or alphanumeric I want to act on it.
I thought Char.IsControl(e.KeyChar)) would do the trick, but it doesn't catch the arrow keys, and for a combobox, that's important.