Hello,
I have the code below in a combo boxes keyup event. I want to do something then the user presses the tab key. But it does not work. I have tried this with other key i.e. enter, shift, letter, and numbers. But does not work when the user presses the tab key.
Does anyone know why this is.
Thanks,
Steve
I have the code below in a combo boxes keyup event. I want to do something then the user presses the tab key. But it does not work. I have tried this with other key i.e. enter, shift, letter, and numbers. But does not work when the user presses the tab key.
Does anyone know why this is.
Code:
If e.KeyCode = Keys.Tab Then
'Do something then the user press the tab key
End If
Thanks,
Steve