tags:

views:

39

answers:

0

using a ultradropdown control from infragistic, i want to capture the "Tab" key press and focus the control somewhere else

right now i have tried -KeyPress event -KeyDown event

//if (e.KeyChar == (char)Keys.Tab) //{ //i'm using sender to find out which control was tab out. // SmartFocusControl(sender); //}

now this work for most of the keyboards press except "TAB" both event never get fired on "TAB" key press... wondering why...

Thank you.

related questions