I just want to “catch” when some user press the TAB key in a Textbox. I’m working in a simple CRUD asp.net application, c# as code behind.
I try to do this as a test:
private void KeyForm_KeyDown( object sender, KeyEventArgs e )
{
keyInfoLabel.Text =
"KeyCode: " + e.KeyCode + '\n' +
"KeyData: " + e.KeyData + '\n' +
"KeyValue: " + e.KeyValue;
}
But it just works with C# desktop application.
It can be useful for somebody.
regards